/aosp_15_r20/external/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_rast_linear_fallback.c | 174 const unsigned iy1 = box->y1 / STAMP_SIZE; in lp_rast_linear_rect_fallback() local 177 if (ix0 == ix1 && iy0 == iy1) { in lp_rast_linear_rect_fallback() 187 for (unsigned i = iy0 + 1; i < iy1; i++) in lp_rast_linear_rect_fallback() 189 partial(task, inputs, ix0, iy1, mask & bottom_mask); in lp_rast_linear_rect_fallback() 191 else if (iy0 == iy1) { in lp_rast_linear_rect_fallback() 203 partial(task, inputs, ix0, iy1, left_mask & bottom_mask); in lp_rast_linear_rect_fallback() 205 partial(task, inputs, ix1, iy1, right_mask & bottom_mask); in lp_rast_linear_rect_fallback() 211 partial(task, inputs, i, iy1, bottom_mask); in lp_rast_linear_rect_fallback() 213 for (unsigned i = iy0 + 1; i < iy1; i++) in lp_rast_linear_rect_fallback() 216 for (unsigned i = iy0 + 1; i < iy1; i++) in lp_rast_linear_rect_fallback() [all …]
|
H A D | lp_rast_rect.c | 190 unsigned iy1 = box.y1 / STAMP_SIZE; in lp_rast_rectangle() local 194 if (ix0 == ix1 && iy0 == iy1) { in lp_rast_rectangle() 204 for (unsigned i = iy0 + 1; i < iy1; i++) in lp_rast_rectangle() 206 partial(task, rect, ix0, iy1, mask & bottom_mask); in lp_rast_rectangle() 207 } else if (iy0 == iy1) { in lp_rast_rectangle() 220 partial(task, rect, ix0, iy1, left_mask & bottom_mask); in lp_rast_rectangle() 222 partial(task, rect, ix1, iy1, right_mask & bottom_mask); in lp_rast_rectangle() 228 partial(task, rect, i, iy1, bottom_mask); in lp_rast_rectangle() 230 for (unsigned i = iy0 + 1; i < iy1; i++) in lp_rast_rectangle() 233 for (unsigned i = iy0 + 1; i < iy1; i++) in lp_rast_rectangle() [all …]
|
H A D | lp_setup_rect.c | 373 const unsigned iy1 = rect->box.y1 / TILE_SIZE; in lp_setup_bin_rectangle() local 381 assert(iy1 == MIN2(iy1, scene->tiles_y - 1)); in lp_setup_bin_rectangle() 392 if (iy1 * TILE_SIZE + TILE_SIZE - 1 != rect->box.y1) in lp_setup_bin_rectangle() 397 if (iy0 == iy1 && ix0 == ix1) { in lp_setup_bin_rectangle() 403 for (unsigned i = iy0 + 1; i < iy1; i++) in lp_setup_bin_rectangle() 405 partial(setup, rect, opaque, ix0, iy1, mask | bottom_mask); in lp_setup_bin_rectangle() 406 } else if (iy0 == iy1) { in lp_setup_bin_rectangle() 414 partial(setup, rect, opaque, ix0, iy1, left_mask | bottom_mask); in lp_setup_bin_rectangle() 416 partial(setup, rect, opaque, ix1, iy1, right_mask | bottom_mask); in lp_setup_bin_rectangle() 422 partial(setup, rect, opaque, i, iy1, bottom_mask); in lp_setup_bin_rectangle() [all …]
|
H A D | lp_setup_tri.c | 907 const int iy1 = trimmed_box.y1 / TILE_SIZE; in lp_setup_bin_triangle() local 930 for (int y = iy0; y <= iy1; y++) { in lp_setup_bin_triangle()
|
/aosp_15_r20/external/mesa3d/src/imgui/ |
H A D | imstb_truetype.h | 884 …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 …]
|
/aosp_15_r20/external/skia/src/core/ |
H A D | SkScan_Hairline.cpp | 158 int iy1 = SkFDot6Round(y1); in HairLineRgn() local 159 if (iy0 == iy1) { // too short to draw in HairLineRgn() 163 if ((iy1 - iy0) > 100000 || (iy1 - iy0) < 0) { in HairLineRgn() 170 vertline(iy0, iy1, startX, slope, blitter); in HairLineRgn()
|
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/geometry/ |
H A D | vktGeometryInstancedRenderingTests.cpp | 239 const int iy1 = std::max(deRoundFloatToInt32(y1), 0); in getSubregion() local 242 return tcu::getSubregion(image, ix1, iy1, ix2 - ix1, iy2 - iy1); in getSubregion()
|
/aosp_15_r20/external/deqp/modules/glshared/ |
H A D | glsShaderRenderCase.cpp | 741 int iy1 = deCeilFloatToInt32(sy1 - 0.5f); in computeVertexReference() local 754 for (int iy = iy0; iy < iy1; iy++) in computeVertexReference()
|
/aosp_15_r20/external/deqp/external/openglcts/modules/common/ |
H A D | glcShaderRenderCase.cpp | 762 int iy1 = deCeilFloatToInt32(sy1 - 0.5f); in computeVertexReference() local 775 for (int iy = iy0; iy < iy1; iy++) in computeVertexReference()
|
/aosp_15_r20/external/deqp/modules/gles2/functional/ |
H A D | es2fVertexTextureTests.cpp | 438 const int iy1 = deCeilFloatToInt32(ldru.w() * (float)region.h - 0.5f); in setPixelColors() local 440 for (int iy = iy0; iy < iy1; iy++) in setPixelColors()
|
/aosp_15_r20/external/deqp/modules/gles3/functional/ |
H A D | es3fVertexTextureTests.cpp | 578 const int iy1 = deCeilFloatToInt32(ldru.w() * (float)region.h - 0.5f); in setPixelColors() local 580 for (int iy = iy0; iy < iy1; iy++) in setPixelColors()
|
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRender.cpp | 2459 const int iy1 = deCeilFloatToInt32(sy1 - 0.5f); in computeVertexReference() local 2472 for (int iy = iy0; iy < iy1; iy++) in computeVertexReference()
|