1
0
Fork 0
mirror of https://github.com/gwm17/implot.git synced 2024-11-22 10:18:52 -05:00

merge master

This commit is contained in:
Evan Pezent 2021-10-20 21:55:11 -07:00
parent 06d7298b48
commit a8456786b6
3 changed files with 2 additions and 12 deletions

View File

@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ImPlot v0.10 WIP
// ImPlot v0.13 WIP
#pragma once

View File

@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ImPlot v0.10 WIP
// ImPlot v0.13 WIP
#pragma once

View File

@ -89,16 +89,6 @@ template <> const ImGuiDataType ImGuiDataTypeGetter<ImS32>::Value = ImGuiDataTy
template <> const ImGuiDataType ImGuiDataTypeGetter<ImU64>::Value = ImGuiDataType_U64;
template <> const ImGuiDataType ImGuiDataTypeGetter<ImS64>::Value = ImGuiDataType_S64;
//-----------------------------------------------------------------------------
// Utils
//-----------------------------------------------------------------------------
// Calc maximum index size of ImDrawIdx
template <typename T>
struct MaxIdx { static const unsigned int Value; };
template <> const unsigned int MaxIdx<unsigned short>::Value = 65535;
template <> const unsigned int MaxIdx<unsigned int>::Value = 4294967295;
//-----------------------------------------------------------------------------
// Item Utils
//-----------------------------------------------------------------------------