Searched refs:local_x (Results 1 - 6 of 6) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_compute.c | 40 int local_x, int local_y, int local_z, in cs_prepare() 58 machine->SystemValue[i].xyzw[0].i[j] = local_x + j; in cs_prepare() 174 int local_x, local_y, local_z, i; in softpipe_launch_grid() local 201 for (local_x = 0; local_x < bwidth; local_x += TGSI_QUAD_SIZE) { in softpipe_launch_grid() 206 machines[idx]->NonHelperMask = (1 << (MIN2(TGSI_QUAD_SIZE, bwidth - local_x))) - 1; in softpipe_launch_grid() 208 local_x, local_y, local_z, in softpipe_launch_grid() 38 cs_prepare(const struct sp_compute_shader *cs, struct tgsi_exec_machine *machine, int local_x, int local_y, int local_z, int g_w, int g_h, int g_d, int b_w, int b_h, int b_d, struct tgsi_sampler *sampler, struct tgsi_image *image, struct tgsi_buffer *buffer ) cs_prepare() argument
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_nir_rt.c | 449 nir_ssa_def *local_x = in brw_nir_create_raygen_trampoline() local 462 nir_vec3(&b, local_x, local_y, local_z)); in brw_nir_create_raygen_trampoline()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.h | 398 IMGUI_API void SetScrollFromPosX(float local_x, float center_x_ratio = 0.5f); // adjust scrolling amount to make given position visible. Generally GetCursorStartPos() + offset to compute a valid position. 453 IMGUI_API void SetCursorPosX(float local_x); // GetWindowPos() + GetCursorPos() == GetCursorScreenPos() etc.)
|
H A D | imgui.cpp | 8125 // - So local_x/local_y are 0.0f for a position at the upper-left corner of a window, 8126 // and generally local_x/local_y are >(padding+decoration) && <(size-padding-decoration) when in the visible area. 8132 void ImGui::SetScrollFromPosX(ImGuiWindow* window, float local_x, float center_x_ratio) in SetScrollFromPosX() argument 8135 window->ScrollTarget.x = IM_FLOOR(local_x + window->Scroll.x); // Convert local position to scroll offset in SetScrollFromPosX() 8150 void ImGui::SetScrollFromPosX(float local_x, float center_x_ratio) in SetScrollFromPosX() argument 8153 SetScrollFromPosX(g.CurrentWindow, local_x, center_x_ratio); in SetScrollFromPosX()
|
H A D | imgui_internal.h | 2434 IMGUI_API void SetScrollFromPosX(ImGuiWindow* window, float local_x, float center_x_ratio);
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 342 IMGUI_API void SetCursorPosX(float local_x); // GetWindowPos() + GetCursorPos() == GetCursorScreenPos() etc.)
|
Completed in 47 milliseconds