Home
last modified time | relevance | path

Searched refs:cpu_fine_clip_rect (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_draw.cpp1176 …, const char* text_begin, const char* text_end, float wrap_width, const ImVec4* cpu_fine_clip_rect) in AddText() argument
1195 if (cpu_fine_clip_rect) in AddText()
1197 clip_rect.x = ImMax(clip_rect.x, cpu_fine_clip_rect->x); in AddText()
1198 clip_rect.y = ImMax(clip_rect.y, cpu_fine_clip_rect->y); in AddText()
1199 clip_rect.z = ImMin(clip_rect.z, cpu_fine_clip_rect->z); in AddText()
1200 clip_rect.w = ImMin(clip_rect.w, cpu_fine_clip_rect->w); in AddText()
1202 …his, font_size, pos, col, clip_rect, text_begin, text_end, wrap_width, cpu_fine_clip_rect != NULL); in AddText()
Dimgui.h1841 …in, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL);