Home
last modified time | relevance | path

Searched refs:iy1 (Results 1 - 16 of 16) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A 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; in lp_rast_rectangle()
[all...]
H A Dlp_rast_linear_fallback.c173 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()
189 for (unsigned i = iy0 + 1; i < iy1; i++) in lp_rast_linear_rect_fallback()
191 partial(task, inputs, ix0, iy1, mask & bottom_mask); in lp_rast_linear_rect_fallback()
193 else if (iy0 == iy1) { in lp_rast_linear_rect_fallback()
207 partial(task, inputs, ix0, iy1, left_mask & bottom_mask); in lp_rast_linear_rect_fallback()
209 partial(task, inputs, ix1, iy1, right_mask & bottom_mask); in lp_rast_linear_rect_fallback()
215 partial(task, inputs, i, iy1, bottom_mask); in lp_rast_linear_rect_fallback()
217 for (unsigned i = iy0 + 1; i < iy1; i++) in lp_rast_linear_rect_fallback()
220 for (unsigned i = iy0 + 1; i < iy1; in lp_rast_linear_rect_fallback()
[all...]
H A Dlp_setup_rect.c380 const unsigned iy1 = rect->box.y1 / TILE_SIZE; in lp_setup_bin_rectangle() local
388 assert(iy1 == MIN2(iy1, scene->tiles_y - 1)); in lp_setup_bin_rectangle()
399 if (iy1 * TILE_SIZE + TILE_SIZE - 1 != rect->box.y1) in lp_setup_bin_rectangle()
404 if (iy0 == iy1 && ix0 == ix1) { in lp_setup_bin_rectangle()
410 for (unsigned i = iy0 + 1; i < iy1; i++) in lp_setup_bin_rectangle()
412 partial(setup, rect, opaque, ix0, iy1, mask | bottom_mask); in lp_setup_bin_rectangle()
413 } else if (iy0 == iy1) { in lp_setup_bin_rectangle()
421 partial(setup, rect, opaque, ix0, iy1, left_mask | bottom_mask); in lp_setup_bin_rectangle()
423 partial(setup, rect, opaque, ix1, iy1, right_mas in lp_setup_bin_rectangle()
[all...]
H A Dlp_setup_tri.c893 const int iy1 = trimmed_box.y1 / TILE_SIZE; in lp_setup_bin_triangle() local
916 for (y = iy0; y <= iy1; y++) { in lp_setup_bin_triangle()
/third_party/skia/src/core/
H A DSkScan_Hairline.cpp141 int iy1 = SkFDot6Round(y1);
142 if (iy0 == iy1) { // too short to draw
146 if ((iy1 - iy0) > 100000 || (iy1 - iy0) < 0) {
153 vertline(iy0, iy1, startX, slope, blitter);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/
H A 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/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/geometry/
H A 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/mesa3d/src/imgui/
H A Dimstb_truetype.h884 STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
886 // bitmap width is ix1-ix0, height is iy1-iy0, and location to place
891 STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
902 STBTT_DEF void stbtt_GetGlyphBitmapBox(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
903 STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
2629 STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1)
2637 if (iy1) *iy1 = 0;
2643 if (iy1) *iy1
[all...]
/third_party/skia/third_party/externals/imgui/
H A Dimstb_truetype.h884 STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
886 // bitmap width is ix1-ix0, height is iy1-iy0, and location to place
891 STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
902 STBTT_DEF void stbtt_GetGlyphBitmapBox(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1);
903 STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
2629 STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1)
2637 if (iy1) *iy1 = 0;
2643 if (iy1) *iy1
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcShaderRenderCase.cpp756 int iy1 = deCeilFloatToInt32(sy1 - 0.5f); in computeVertexReference() local
767 //printf("(%d,%d) -> (%f..%f, %f..%f) (%d..%d, %d..%d)\n", x, y, sx0, sx1, sy0, sy1, ix0, ix1, iy0, iy1); in computeVertexReference()
769 for (int iy = iy0; iy < iy1; iy++) in computeVertexReference()
/third_party/vk-gl-cts/modules/glshared/
H A DglsShaderRenderCase.cpp684 int iy1 = deCeilFloatToInt32(sy1 - 0.5f); in computeVertexReference() local
695 //printf("(%d,%d) -> (%f..%f, %f..%f) (%d..%d, %d..%d)\n", x, y, sx0, sx1, sy0, sy1, ix0, ix1, iy0, iy1); in computeVertexReference()
697 for (int iy = iy0; iy < iy1; iy++) in computeVertexReference()
/third_party/vk-gl-cts/modules/gles2/functional/
H A 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/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRender.cpp2436 const int iy1 = deCeilFloatToInt32(sy1 - 0.5f);
2447 //printf("(%d,%d) -> (%f..%f, %f..%f) (%d..%d, %d..%d)\n", x, y, sx0, sx1, sy0, sy1, ix0, ix1, iy0, iy1);
2449 for (int iy = iy0; iy < iy1; iy++)
/third_party/vk-gl-cts/modules/gles3/functional/
H A 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_no_buildgn/vulkan/shaderrender/
H A DvktShaderRender.cpp2438 const int iy1 = deCeilFloatToInt32(sy1 - 0.5f);
2449 //printf("(%d,%d) -> (%f..%f, %f..%f) (%d..%d, %d..%d)\n", x, y, sx0, sx1, sy0, sy1, ix0, ix1, iy0, iy1);
2451 for (int iy = iy0; iy < iy1; iy++)
/third_party/glfw/deps/
H A Dnuklear.h11583 int *ix0, int *iy0, int *ix1, int *iy1) in nk_tt_GetGlyphBitmapBoxSubpixel()
11591 if (iy1) *iy1 = 0; in nk_tt_GetGlyphBitmapBoxSubpixel()
11597 if (iy1) *iy1 = nk_iceilf ((float)-y0 * scale_y + shift_y); in nk_tt_GetGlyphBitmapBoxSubpixel()
11602 float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) in nk_tt_GetGlyphBitmapBox()
11604 nk_tt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1); in nk_tt_GetGlyphBitmapBox()
11581 nk_tt_GetGlyphBitmapBoxSubpixel(const struct nk_tt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) nk_tt_GetGlyphBitmapBoxSubpixel() argument
11601 nk_tt_GetGlyphBitmapBox(const struct nk_tt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) nk_tt_GetGlyphBitmapBox() argument

Completed in 78 milliseconds