Searched refs:ImU8 (Results 1 – 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/imgui/ |
D | imgui_internal.h | 713 …ImU8 CircleSegmentCounts[64]; // Precomputed segment count for given radius before w… 920 ImU8 Data[8]; // Can fit any data up to ImGuiDataType_COUNT 2123 typedef ImU8 ImGuiTableDrawChannelIdx; 2166 …ImU8 AutoFitQueue; // Queue of 8 values for the next 8 frames… 2167 …ImU8 CannotSkipItemsQueue; // Queue of 8 values for the next 8 frames… 2168 …ImU8 SortDirection : 2; // ImGuiSortDirection_Ascending or ImGuiSo… 2169 …ImU8 SortDirectionsAvailCount : 2; // Number of available sort directions (0 … 2170 …ImU8 SortDirectionsAvailMask : 4; // Mask of available sort directions (1-bi… 2171 …ImU8 SortDirectionsAvailList; // Ordered of available sort directions (2… 2182 DrawChannelCurrent = DrawChannelFrozen = DrawChannelUnfrozen = (ImU8)-1; in ImGuiTableColumn() [all …]
|
D | imgui_widgets.cpp | 1923 return ImFormatString(buf, buf_size, format, *(const ImU8*)p_data); in DataTypeFormatString() 1942 …if (op == '+') { *(ImU8*)output = ImAddClampOverflow(*(const ImU8*)arg1, *(const ImU8*)arg2, IM… in DataTypeApplyOp() 1943 …if (op == '-') { *(ImU8*)output = ImSubClampOverflow(*(const ImU8*)arg1, *(const ImU8*)arg2, IM… in DataTypeApplyOp() 2073 *(ImU8*)p_data = (ImU8)ImClamp(v32, (int)IM_U8_MIN, (int)IM_U8_MAX); in DataTypeApplyOpFromText() 2098 …case ImGuiDataType_U8: return DataTypeCompareT<ImU8 >((const ImU8* )arg_1, (const ImU8* )ar… in DataTypeCompare() 2127 …se ImGuiDataType_U8: return DataTypeClampT<ImU8 >((ImU8* )p_data, (const ImU8* )p_min, (con… in DataTypeClamp() 2362 …ImU8*)p_v; bool r = DragBehaviorT<ImU32, ImS32, float>(ImGuiDataType_U32, &v32, v_speed, p_min ? … in DragBehavior() 2968 …ImU8*)p_v; bool r = SliderBehaviorT<ImU32, ImS32, float>(bb, id, ImGuiDataType_U32, &v32, *(const… in SliderBehavior()
|
D | imgui_tables.cpp | 704 column->SortDirectionsAvailList = (ImU8)list; in TableSetupColumnFlags() 705 column->SortDirectionsAvailMask = (ImU8)mask; in TableSetupColumnFlags() 706 column->SortDirectionsAvailCount = (ImU8)count; in TableSetupColumnFlags() 1453 …olumnFlags_PreferSortDescending) ? (ImS8)ImGuiSortDirection_Descending : (ImU8)(ImGuiSortDirection… in TableSetupColumn() 2630 column->SortDirection = (ImU8)TableGetColumnAvailSortDirection(column, 0); in TableFixColumnSortDirection() 2668 column->SortDirection = (ImU8)sort_direction; in TableSetColumnSortDirection() 2743 column->SortDirection = (ImU8)TableGetColumnAvailSortDirection(column, 0); in TableSortSpecsSanitize() 3380 …r) == 1) { line = ImStrSkipBlank(line + r); column->IsEnabled = (ImU8)n; settings->SaveFl… in TableSettingsHandler_ReadLine()
|
D | imgui.h | 223 typedef unsigned char ImU8; // 8-bit unsigned integer typedef 2759 …ImU8 Used4kPagesMap[(IM_UNICODE_CODEPOINT_MAX+1)/4096/8]; // 2 bytes if ImW…
|
D | imgui_demo.cpp | 1894 … const ImU8 u8_zero = 0, u8_one = 1, u8_fifty = 50, u8_min = 0, u8_max = 255; in ShowDemoWindowWidgets() 1906 static ImU8 u8_v = 255; in ShowDemoWindowWidgets()
|
D | imgui_draw.cpp | 396 …CircleSegmentCounts[i] = (ImU8)((i > 0) ? IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(radius, CircleSegme… in SetCircleTessellationMaxError()
|