Searched refs:GGLint (Results 1 – 7 of 7) sorted by relevance
/system/core/libpixelflinger/ |
D | raster.cpp | 28 static void ggl_rasterPos2i(void* con, GGLint x, GGLint y); 29 static void ggl_copyPixels(void* con, GGLint xs, GGLint ys, 48 void ggl_rasterPos2i(void* con, GGLint x, GGLint y) in ggl_rasterPos2i() 53 void ggl_copyPixels(void* con, GGLint xs, GGLint ys, in ggl_copyPixels() 72 GGLint xd = gglFixedToIntRound(c->state.raster.x); in ggl_copyPixels() 73 GGLint yd = gglFixedToIntRound(c->state.raster.y); in ggl_copyPixels() 76 if (xd < GGLint(c->state.scissor.left)) { in ggl_copyPixels() 77 GGLint offset = GGLint(c->state.scissor.left) - xd; in ggl_copyPixels() 78 xd = GGLint(c->state.scissor.left); in ggl_copyPixels() 82 if (yd < GGLint(c->state.scissor.top)) { in ggl_copyPixels() [all …]
|
D | raster.h | 28 void gglCopyPixels(void* c, GGLint x, GGLint y, GGLsizei width, GGLsizei height, GGLenum type); 29 void gglRasterPos2d(void* c, GGLint x, GGLint y);
|
D | trap.cpp | 46 static void recti_validate(void* c, GGLint l, GGLint t, GGLint r, GGLint b); 47 static void recti(void* c, GGLint l, GGLint t, GGLint r, GGLint b); 167 GGLint l = (xc - halfSize) >> TRI_FRACTION_BITS; in pointx() 168 GGLint t = (yc - halfSize) >> TRI_FRACTION_BITS; in pointx() 169 GGLint r = (xc + halfSize) >> TRI_FRACTION_BITS; in pointx() 170 GGLint b = (yc + halfSize) >> TRI_FRACTION_BITS; in pointx() 208 GGLint l = (v[0] - rad) >> TRI_FRACTION_BITS; in aa_nice_pointx() 209 GGLint t = (v[1] - rad) >> TRI_FRACTION_BITS; in aa_nice_pointx() 210 GGLint r = (v[0] + rad + (TRI_ONE-1)) >> TRI_FRACTION_BITS; in aa_nice_pointx() 211 GGLint b = (v[1] + rad + (TRI_ONE-1)) >> TRI_FRACTION_BITS; in aa_nice_pointx() [all …]
|
D | clear.cpp | 31 static void ggl_clearStencil(void* c, GGLint s); 164 static void ggl_clearStencil(void* con, GGLint s) in ggl_clearStencil()
|
D | pixelflinger.cpp | 146 static void ggl_scissor(void* con, GGLint x, GGLint y, in ggl_scissor() 334 GGLint param) in ggl_texEnvi() 391 GGLint param) in ggl_texParameteri() 449 static void ggl_texCoordGradScale8xv(void* con, GGLint tmu, const int32_t* grad) in ggl_texCoordGradScale8xv() 472 static void ggl_texCoord2i(void* con, GGLint s, GGLint t) in ggl_texCoord2i() 477 static void ggl_texGeni(void* con, GGLenum coord, GGLenum pname, GGLint param) in ggl_texGeni()
|
/system/core/include/pixelflinger/ |
D | pixelflinger.h | 29 typedef int32_t GGLint; // i typedef 191 GGLint stride; // stride in pixels 197 GGLint compressedFormat; 198 GGLint vstride; 209 void (*recti)(void* c, GGLint l, GGLint t, GGLint r, GGLint b); 214 void (*scissor)(void* c, GGLint x, GGLint y, GGLsizei width, GGLsizei height); 253 GGLint param); 261 GGLint param); 264 void (*texCoord2i)(void* c, GGLint s, GGLint t); 271 void (*texCoordGradScale8xv)(void* c, GGLint tmu, const int32_t* grad8); [all …]
|
/system/core/include/private/pixelflinger/ |
D | ggl_context.h | 280 GGLint stencil;
|