Home
last modified time | relevance | path

Searched refs:iy1 (Results 1 – 15 of 15) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_rast_rect.c154 unsigned ix0, ix1, iy0, iy1; in lp_rast_rectangle() local
195 iy1 = box.y1 / STAMP_SIZE; in lp_rast_rectangle()
199 if (ix0 == ix1 && iy0 == iy1) { in lp_rast_rectangle()
211 for (i = iy0 + 1; i < iy1; i++) in lp_rast_rectangle()
213 partial(task, rect, ix0, iy1, mask & bottom_mask); in lp_rast_rectangle()
215 else if (iy0 == iy1) { in lp_rast_rectangle()
229 partial(task, rect, ix0, iy1, left_mask & bottom_mask); in lp_rast_rectangle()
231 partial(task, rect, ix1, iy1, right_mask & bottom_mask); in lp_rast_rectangle()
237 partial(task, rect, i, iy1, bottom_mask); in lp_rast_rectangle()
239 for (i = iy0 + 1; i < iy1; i++) in lp_rast_rectangle()
[all …]
Dlp_rast_linear_fallback.c216 unsigned ix0, ix1, iy0, iy1; in lp_rast_linear_rect_fallback() local
245 iy1 = box->y1 / STAMP_SIZE; in lp_rast_linear_rect_fallback()
249 if (ix0 == ix1 && iy0 == iy1) { in lp_rast_linear_rect_fallback()
261 for (i = iy0 + 1; i < iy1; i++) in lp_rast_linear_rect_fallback()
263 partial(task, inputs, ix0, iy1, mask & bottom_mask); in lp_rast_linear_rect_fallback()
265 else if (iy0 == iy1) { in lp_rast_linear_rect_fallback()
279 partial(task, inputs, ix0, iy1, left_mask & bottom_mask); in lp_rast_linear_rect_fallback()
281 partial(task, inputs, ix1, iy1, right_mask & bottom_mask); in lp_rast_linear_rect_fallback()
287 partial(task, inputs, i, iy1, bottom_mask); in lp_rast_linear_rect_fallback()
289 for (i = iy0 + 1; i < iy1; i++) in lp_rast_linear_rect_fallback()
[all …]
Dlp_setup_rect.c370 unsigned ix0, iy0, ix1, iy1; in lp_setup_bin_rectangle() local
387 iy1 = rect->box.y1 / TILE_SIZE; in lp_setup_bin_rectangle()
395 assert(iy1 == MIN2(iy1, scene->tiles_y - 1)); in lp_setup_bin_rectangle()
406 if (iy1 * TILE_SIZE + TILE_SIZE - 1 != rect->box.y1) in lp_setup_bin_rectangle()
411 if (iy0 == iy1 && ix0 == ix1) { in lp_setup_bin_rectangle()
418 for (i = iy0 + 1; i < iy1; i++) in lp_setup_bin_rectangle()
420 partial(setup, rect, ix0, iy1, mask | bottom_mask); in lp_setup_bin_rectangle()
422 else if (iy0 == iy1) { in lp_setup_bin_rectangle()
431 partial(setup, rect, ix0, iy1, left_mask | bottom_mask); in lp_setup_bin_rectangle()
433 partial(setup, rect, ix1, iy1, right_mask | bottom_mask); in lp_setup_bin_rectangle()
[all …]
Dlp_setup_tri.c910 int iy1 = trimmed_box.y1 / TILE_SIZE; in lp_setup_bin_triangle() local
933 for (y = iy0; y <= iy1; y++) in lp_setup_bin_triangle()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/
DvktGeometryInstancedRenderingTests.cpp238 const int iy1 = std::max(deRoundFloatToInt32(y1), 0); in getSubregion() local
241 return tcu::getSubregion(image, ix1, iy1, ix2 - ix1, iy2 - iy1); in getSubregion()
/third_party/skia/src/core/
DSkScan_Hairline.cpp141 int iy1 = SkFDot6Round(y1); in HairLineRgn() local
142 if (iy0 == iy1) { // too short to draw in HairLineRgn()
146 if ((iy1 - iy0) > 100000 || (iy1 - iy0) < 0) { in HairLineRgn()
153 vertline(iy0, iy1, startX, slope, blitter); in HairLineRgn()
/third_party/mesa3d/src/imgui/
Dimstb_truetype.h884 …ntinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
891 …loat scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
902 …t_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
903 …float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
2629 … float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBoxSubpixel() argument
2637 if (iy1) *iy1 = 0; in stbtt_GetGlyphBitmapBoxSubpixel()
2643 if (iy1) *iy1 = STBTT_iceil (-y0 * scale_y + shift_y); in stbtt_GetGlyphBitmapBoxSubpixel()
2647 …tt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBox() argument
2649 stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1); in stbtt_GetGlyphBitmapBox()
2652 …float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetCodepointBitmapBoxSubpixel() argument
[all …]
/third_party/skia/third_party/externals/imgui/
Dimstb_truetype.h884 …ntinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
891 …loat scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
902 …t_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
903 …float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
2629 … float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBoxSubpixel() argument
2637 if (iy1) *iy1 = 0; in stbtt_GetGlyphBitmapBoxSubpixel()
2643 if (iy1) *iy1 = STBTT_iceil (-y0 * scale_y + shift_y); in stbtt_GetGlyphBitmapBoxSubpixel()
2647 …tt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBox() argument
2649 stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1); in stbtt_GetGlyphBitmapBox()
2652 …float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetCodepointBitmapBoxSubpixel() argument
[all …]
/third_party/flutter/skia/third_party/externals/imgui/
Dimstb_truetype.h868 …ntinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
875 …loat scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
886 …t_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
887 …float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
2611 … float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBoxSubpixel() argument
2619 if (iy1) *iy1 = 0; in stbtt_GetGlyphBitmapBoxSubpixel()
2625 if (iy1) *iy1 = STBTT_iceil (-y0 * scale_y + shift_y); in stbtt_GetGlyphBitmapBoxSubpixel()
2629 …tt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetGlyphBitmapBox() argument
2631 stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1); in stbtt_GetGlyphBitmapBox()
2634 …float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) in stbtt_GetCodepointBitmapBoxSubpixel() argument
[all …]
/third_party/flutter/skia/src/core/
DSkScan_Hairline.cpp136 int iy1 = SkFDot6Round(y1); in HairLineRgn() local
137 if (iy0 == iy1) { // too short to draw in HairLineRgn()
144 vertline(iy0, iy1, startX, slope, blitter); in HairLineRgn()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcShaderRenderCase.cpp756 int iy1 = deCeilFloatToInt32(sy1 - 0.5f); in computeVertexReference() local
769 for (int iy = iy0; iy < iy1; iy++) in computeVertexReference()
/third_party/vk-gl-cts/modules/glshared/
DglsShaderRenderCase.cpp684 int iy1 = deCeilFloatToInt32(sy1 - 0.5f); in computeVertexReference() local
697 for (int iy = iy0; iy < iy1; iy++) in computeVertexReference()
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fVertexTextureTests.cpp346 const int iy1 = deCeilFloatToInt32(ldru.w() * (float)region.h - 0.5f); in setPixelColors() local
348 for (int iy = iy0; iy < iy1; iy++) in setPixelColors()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fVertexTextureTests.cpp441 const int iy1 = deCeilFloatToInt32(ldru.w() * (float)region.h - 0.5f); in setPixelColors() local
443 for (int iy = iy0; iy < iy1; iy++) in setPixelColors()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRender.cpp2402 const int iy1 = deCeilFloatToInt32(sy1 - 0.5f); in computeVertexReference() local
2415 for (int iy = iy0; iy < iy1; iy++) in computeVertexReference()