Home
last modified time | relevance | path

Searched refs:imgY (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_zoom.h33 _swrast_write_zoomed_rgba_span(struct gl_context *ctx, GLint imgX, GLint imgY,
37 _swrast_write_zoomed_rgb_span(struct gl_context *ctx, GLint imgX, GLint imgY,
41 _swrast_write_zoomed_depth_span(struct gl_context *ctx, GLint imgX, GLint imgY,
46 _swrast_write_zoomed_stencil_span(struct gl_context *ctx, GLint imgX, GLint imgY,
51 _swrast_write_zoomed_z_span(struct gl_context *ctx, GLint imgX, GLint imgY,
Ds_zoom.c131 zoom_span( struct gl_context *ctx, GLint imgX, GLint imgY, const SWspan *span, in zoom_span() argument
139 if (!compute_zoomed_bounds(ctx, imgX, imgY, span->x, span->y, span->end, in zoom_span()
332 _swrast_write_zoomed_rgba_span(struct gl_context *ctx, GLint imgX, GLint imgY, in _swrast_write_zoomed_rgba_span() argument
335 zoom_span(ctx, imgX, imgY, span, rgba, GL_RGBA); in _swrast_write_zoomed_rgba_span()
340 _swrast_write_zoomed_rgb_span(struct gl_context *ctx, GLint imgX, GLint imgY, in _swrast_write_zoomed_rgb_span() argument
343 zoom_span(ctx, imgX, imgY, span, rgb, GL_RGB); in _swrast_write_zoomed_rgb_span()
348 _swrast_write_zoomed_depth_span(struct gl_context *ctx, GLint imgX, GLint imgY, in _swrast_write_zoomed_depth_span() argument
351 zoom_span(ctx, imgX, imgY, span, in _swrast_write_zoomed_depth_span()
361 _swrast_write_zoomed_stencil_span(struct gl_context *ctx, GLint imgX, GLint imgY, in _swrast_write_zoomed_stencil_span() argument
369 if (!compute_zoomed_bounds(ctx, imgX, imgY, spanX, spanY, width, in _swrast_write_zoomed_stencil_span()
[all …]
Ds_drawpix.c415 const GLint imgX = x, imgY = y; in draw_rgba_pixels() local
480 _swrast_write_zoomed_rgba_span(ctx, imgX, imgY, &span, rgba); in draw_rgba_pixels()
554 const GLint imgX = x, imgY = y; in draw_depth_stencil_pixels() local
615 _swrast_write_zoomed_z_span(ctx, imgX, imgY, width, x, in draw_depth_stencil_pixels()
631 _swrast_write_zoomed_stencil_span(ctx, imgX, imgY, width, in draw_depth_stencil_pixels()
/external/jmonkeyengine/engine/src/core/com/jme3/effect/
DParticlePointMesh.java146 int imgY = (p.imageIndex - imgX) / imagesY; in updateParticleData() local
149 float startY = ((float) imgY) / imagesY; in updateParticleData()
DParticleTriMesh.java250 int imgY = (p.imageIndex - imgX) / imagesY; in updateParticleData() local
253 float startY = ((float) imgY) / imagesY; in updateParticleData()
/external/opencv/cv/include/
Dcvcompat.h121 #define cvRunningAvgMask(imgY, imgU, mask, alpha) cvRunningAvg(imgY, imgU, alpha, mask) argument