Searched refs:item_width (Results 1 - 6 of 6) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_query.c | 1865 unsigned item_width, item_mask; in r600_query_fix_enabled_rb_mask() local 1868 item_width = 4; in r600_query_fix_enabled_rb_mask() 1871 item_width = 2; in r600_query_fix_enabled_rb_mask() 1878 backend_map >>= item_width; in r600_query_fix_enabled_rb_mask() local
|
/third_party/glfw/deps/ |
H A D | nuklear.h | 2332 /// in row with same @item_width horizontal size. Once called all subsequent widget 2335 /// void nk_layout_row_static(struct nk_context *ctx, float height, int item_width, int cols); 2345 NK_API void nk_layout_row_static(struct nk_context *ctx, float height, int item_width, int cols); 5304 float item_width; member 15692 layout->row.item_width = 0; in nk_panel_begin() 17710 win->layout->row.item_width = (float)width; in nk_row_layout() 17728 nk_layout_row_static(struct nk_context *ctx, float height, int item_width, int cols) in nk_layout_row_static() argument 17730 nk_row_layout(ctx, NK_STATIC, height, cols, item_width); in nk_layout_row_static() 17754 layout->row.item_width = 0; in nk_layout_row_begin() 17780 layout->row.item_width in nk_layout_row_push() 18162 float item_width = 0; nk_layout_widget_space() local [all...] |
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.h | 416 IMGUI_API void PushItemWidth(float item_width); // push width of items for common large "item+label" widgets. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -FLT_MIN always align width to the right side). 418 IMGUI_API void SetNextItemWidth(float item_width); // set width of the _next_ common large "item+label" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -FLT_MIN always align width to the right side)
|
H A D | imgui.cpp | 7696 void ImGui::SetNextItemWidth(float item_width) in SetNextItemWidth() argument 7700 g.NextItemData.Width = item_width; in SetNextItemWidth() 7704 void ImGui::PushItemWidth(float item_width) in PushItemWidth() argument 7709 window->DC.ItemWidth = (item_width == 0.0f ? window->ItemWidthDefault : item_width); in PushItemWidth()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 316 IMGUI_API void PushItemWidth(float item_width); // width of items for the common item+label case, pixels. 0.0f = default to ~2/3 of windows width, >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)
|
H A D | imgui.cpp | 5628 void ImGui::PushItemWidth(float item_width) in PushItemWidth() argument 5631 window->DC.ItemWidth = (item_width == 0.0f ? window->ItemWidthDefault : item_width); in PushItemWidth()
|
Completed in 93 milliseconds