Home
last modified time | relevance | path

Searched refs:ImU64 (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/imgui/examples/example_win32_directx12/
Dbuild_win32.bat2 @REM Important: to build on 32-bit systems, the DX12 backends needs '#define ImTextureID ImU64', so…
9 cl /nologo /Zi /MD %INCLUDES% /D ImTextureID=ImU64 /D UNICODE /D _UNICODE %SOURCES% /Fe%OUT_DIR%/%O…
/third_party/skia/third_party/externals/imgui/
Dimgui_internal.h304 static inline bool ImIsPowerOfTwo(ImU64 v) { return v != 0 && (v & (v - 1)) == 0; } in ImIsPowerOfTwo()
367 static inline ImU64 ImFileGetSize(ImFileHandle) { return (ImU64 in ImFileGetSize()
368 static inline ImU64 ImFileRead(void*, ImU64, ImU64, ImFileHandle) { return 0; } in ImFileRead() argument
369 static inline ImU64 ImFileWrite(const void*, ImU64, ImU64, ImFileHandle) { return 0; } in ImFileWrite() argument
375 IMGUI_API ImU64 ImFileGetSize(ImFileHandle file);
376 IMGUI_API ImU64 ImFileRead(void* data, ImU64 size, ImU64 count, ImFileHandle file);
377 IMGUI_API ImU64 ImFileWrite(const void* data, ImU64 size, ImU64 count, ImFileHandle fil…
524 ImU32 mask = (ImU32)(((ImU64)1 << b_mod) - 1) & ~(ImU32)(((ImU64)1 << a_mod) - 1); in ImBitArraySetBitRange()
1516ImU64 ActiveIdUsingKeyInputMask; // Active widget will want to read tho…
2204 ImU64 EnabledMaskByDisplayOrder; // Column DisplayOrder -> IsEnabled map
[all …]
Dimgui_tables.cpp789 table->EnabledMaskByIndex |= (ImU64)1 << column_n; in TableUpdateLayout()
790 table->EnabledMaskByDisplayOrder |= (ImU64)1 << column->DisplayOrder; in TableUpdateLayout()
838 if (!(table->EnabledMaskByIndex & ((ImU64)1 << column_n))) in TableUpdateLayout()
854 …_WidthFixed) && !column_is_resizable && (table->RequestOutputMaskByIndex & ((ImU64)1 << column_n))) in TableUpdateLayout()
900 if (!(table->EnabledMaskByIndex & ((ImU64)1 << column_n))) in TableUpdateLayout()
927 if (!(table->EnabledMaskByDisplayOrder & ((ImU64)1 << order_n))) in TableUpdateLayout()
967 if ((table->EnabledMaskByDisplayOrder & ((ImU64)1 << order_n)) == 0) in TableUpdateLayout()
1020 table->VisibleMaskByIndex |= ((ImU64)1 << column_n); in TableUpdateLayout()
1025 table->RequestOutputMaskByIndex |= ((ImU64)1 << column_n); in TableUpdateLayout()
1152 if (!(table->EnabledMaskByDisplayOrder & ((ImU64)1 << order_n))) in TableUpdateBorders()
[all …]
Dimgui_widgets.cpp115 static const ImU64 IM_U64_MIN = 0;
117 static const ImU64 IM_U64_MAX = ULLONG_MAX; // (0xFFFFFFFFFFFFFFFFull);
119 static const ImU64 IM_U64_MAX = (2ULL * 9223372036854775807LL + 1);
1171 bool ImGui::CheckboxFlags(const char* label, ImU64* flags, ImU64 flags_value) in CheckboxFlags()
1869 { sizeof(ImU64), "U64", "%I64u","%I64u" },
1872 { sizeof(ImU64), "U64", "%llu", "%llu" },
1915 return ImFormatString(buf, buf_size, format, *(const ImU64*)p_data); in DataTypeFormatString()
1966 …if (op == '+') { *(ImU64*)output = ImAddClampOverflow(*(const ImU64*)arg1, *(const ImU64*)arg2, IM… in DataTypeApplyOp()
1967 …if (op == '-') { *(ImU64*)output = ImSubClampOverflow(*(const ImU64*)arg1, *(const ImU64*)arg2, IM… in DataTypeApplyOp()
2104 …case ImGuiDataType_U64: return DataTypeCompareT<ImU64 >((const ImU64* )arg_1, (const ImU64* )ar… in DataTypeCompare()
[all …]
Dimgui.h230 typedef unsigned __int64 ImU64; // 64-bit unsigned integer (pre and post C++11 with Visual Stud… typedef
234 typedef uint64_t ImU64; // 64-bit unsigned integer (pre C++11) typedef
237 typedef unsigned long long ImU64; // 64-bit unsigned integer (post C++11) typedef
Dimgui.cpp1598 ImU64 ImFileGetSize(ImFileHandle f) { long off = 0, sz = 0; return ((off = ftell(f)) != -1 && !… in ImFileGetSize()
1599 ImU64 ImFileRead(void* data, ImU64 sz, ImU64 count, ImFileHandle f) { return fread(data… in ImFileRead()
1600 ImU64 ImFileWrite(const void* data, ImU64 sz, ImU64 count, ImFileHandle f) { return fwrite(dat… in ImFileWrite()
4987 g.ActiveIdUsingKeyInputMask = ~(ImU64)0; in SetActiveIdUsingNavAndKeys()
10421 ImFileWrite(g.LogBuffer.c_str(), sizeof(char), (ImU64)g.LogBuffer.size(), g.LogFile); in LogTextV()
Dimgui_demo.cpp1891 ImU64 ULLONG_MAX = (2ULL * 9223372036854775807LL + 1); in ShowDemoWindowWidgets()
1900 …const ImU64 u64_zero = 0, u64_one = 1, u64_fifty = 50, u64_min = 0, u64_max = ULLO… in ShowDemoWindowWidgets()
1912 static ImU64 u64_v = (ImU64)-1; in ShowDemoWindowWidgets()
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui_widgets.cpp86 static const ImU64 IM_U64_MIN = 0;
88 static const ImU64 IM_U64_MAX = ULLONG_MAX; // (0xFFFFFFFFFFFFFFFFull);
90 static const ImU64 IM_U64_MAX = (2ULL * 9223372036854775807LL + 1);
1497 { sizeof(ImU64), "%I64u","%I64u" },
1500 { sizeof(ImU64), "%llu", "%llu" },
1536 return ImFormatString(buf, buf_size, format, *(const ImU64*)data_ptr); in DataTypeFormatString()
1564 if (op == '+') *(ImU64*)output = *(const ImU64*)arg1 + *(const ImU64*)arg2; in DataTypeApplyOp()
1565 else if (op == '-') *(ImU64*)output = *(const ImU64*)arg1 - *(const ImU64*)arg2; in DataTypeApplyOp()
1846 …rn DragBehaviorT<ImU64, ImS64, double>(data_type, (ImU64*)v, v_speed, v_min ? *(const ImU64* )v_m… in DragBehavior()
2279 IM_ASSERT(*(const ImU64*)v_min <= IM_U64_MAX/2); in SliderBehavior()
[all …]
Dimgui.h154 typedef unsigned __int64 ImU64; // 64-bit unsigned integer (pre and post C++11 with Visual Stud… typedef
158 typedef uint64_t ImU64; // 64-bit unsigned integer (pre C++11) typedef
161 typedef unsigned long long ImU64; // 64-bit unsigned integer (post C++11) typedef
Dimgui_demo.cpp1168 ImU64 ULLONG_MAX = (2ULL * 9223372036854775807LL + 1); in ShowDemoWindowWidgets()
1173 …const ImU64 u64_zero = 0, u64_one = 1, u64_fifty = 50, u64_min = 0, u64_max = ULLO… in ShowDemoWindowWidgets()
1181 static ImU64 u64_v = (ImU64)-1; in ShowDemoWindowWidgets()
/third_party/mesa3d/src/imgui/
Dimgui_widgets.cpp88 static const ImU64 IM_U64_MIN = 0;
90 static const ImU64 IM_U64_MAX = ULLONG_MAX; // (0xFFFFFFFFFFFFFFFFull);
92 static const ImU64 IM_U64_MAX = (2ULL * 9223372036854775807LL + 1);
1503 { sizeof(ImU64), "%I64u","%I64u" },
1506 { sizeof(ImU64), "%llu", "%llu" },
1542 return ImFormatString(buf, buf_size, format, *(const ImU64*)data_ptr); in DataTypeFormatString()
1570 if (op == '+') *(ImU64*)output = *(const ImU64*)arg1 + *(const ImU64*)arg2; in DataTypeApplyOp()
1571 else if (op == '-') *(ImU64*)output = *(const ImU64*)arg1 - *(const ImU64*)arg2; in DataTypeApplyOp()
1852 …rn DragBehaviorT<ImU64, ImS64, double>(data_type, (ImU64*)v, v_speed, v_min ? *(const ImU64* )v_m… in DragBehavior()
2283 IM_ASSERT(*(const ImU64*)v_min <= IM_U64_MAX/2); in SliderBehavior()
[all …]
Dimgui.h157 typedef unsigned __int64 ImU64; // 64-bit unsigned integer (pre and post C++11 with Visual Stud… typedef
161 typedef uint64_t ImU64; // 64-bit unsigned integer (pre C++11) typedef
164 typedef unsigned long long ImU64; // 64-bit unsigned integer (post C++11) typedef
/third_party/skia/third_party/externals/imgui/docs/
DCHANGELOG.txt721 the ImTextureID to be 64-bit (e.g. '#define ImTextureID ImU64' in imconfig.h). (#301)
727 - Examples: DX12: Added '#define ImTextureID ImU64' in project and build files to also allow buildi…