/system/core/libpixelflinger/ |
D | pixelflinger.cpp | 93 static void ggl_bindTexture(void* con, const GGLSurface* surface) in ggl_bindTexture() argument 95 GGL_CONTEXT(c, con); in ggl_bindTexture() 102 static void ggl_bindTextureLod(void* con, GGLuint tmu,const GGLSurface* surface) in ggl_bindTextureLod() argument 104 GGL_CONTEXT(c, con); in ggl_bindTextureLod() 109 static void ggl_colorBuffer(void* con, const GGLSurface* surface) in ggl_colorBuffer() argument 111 GGL_CONTEXT(c, con); in ggl_colorBuffer() 129 static void ggl_readBuffer(void* con, const GGLSurface* surface) in ggl_readBuffer() argument 131 GGL_CONTEXT(c, con); in ggl_readBuffer() 135 static void ggl_depthBuffer(void* con, const GGLSurface* surface) in ggl_depthBuffer() argument 137 GGL_CONTEXT(c, con); in ggl_depthBuffer() [all …]
|
D | trap.cpp | 37 static void pointx_validate(void *con, const GGLcoord* c, GGLcoord r); 38 static void pointx(void *con, const GGLcoord* c, GGLcoord r); 39 static void aa_pointx(void *con, const GGLcoord* c, GGLcoord r); 40 static void aa_nice_pointx(void *con, const GGLcoord* c, GGLcoord r); 42 static void linex_validate(void *con, const GGLcoord* v0, const GGLcoord* v1, GGLcoord w); 43 static void linex(void *con, const GGLcoord* v0, const GGLcoord* v1, GGLcoord w); 44 static void aa_linex(void *con, const GGLcoord* v0, const GGLcoord* v1, GGLcoord w); 57 static void trianglex_debug(void* con, 60 static void aapolyx(void* con, 136 void pointx_validate(void *con, const GGLcoord* v, GGLcoord rad) in pointx_validate() argument [all …]
|
D | raster.cpp | 27 static void ggl_rasterPos2x(void* con, GGLfixed x, GGLfixed y); 28 static void ggl_rasterPos2i(void* con, GGLint x, GGLint y); 29 static void ggl_copyPixels(void* con, GGLint xs, GGLint ys, 40 void ggl_rasterPos2x(void* con, GGLfixed x, GGLfixed y) in ggl_rasterPos2x() argument 42 GGL_CONTEXT(c, con); in ggl_rasterPos2x() 48 void ggl_rasterPos2i(void* con, GGLint x, GGLint y) in ggl_rasterPos2i() argument 50 ggl_rasterPos2x(con, gglIntToFixed(x), gglIntToFixed(y)); in ggl_rasterPos2i() 53 void ggl_copyPixels(void* con, GGLint xs, GGLint ys, in ggl_copyPixels() argument 56 GGL_CONTEXT(c, con); in ggl_copyPixels() 146 GGLint gglBitBlit(GGLContext* con, int tmu, GGLint crop[4], GGLint where[4]) in gglBitBlit() argument [all …]
|
D | clear.cpp | 92 static void ggl_clear(void* con, GGLbitfield mask) in ggl_clear() argument 94 GGL_CONTEXT(c, con); in ggl_clear() 146 static void ggl_clearColorx(void* con, in ggl_clearColorx() argument 149 GGL_CONTEXT(c, con); in ggl_clearColorx() 157 static void ggl_clearDepthx(void* con, GGLclampx depth) in ggl_clearDepthx() argument 159 GGL_CONTEXT(c, con); in ggl_clearDepthx() 164 static void ggl_clearStencil(void* con, GGLint s) in ggl_clearStencil() argument 166 GGL_CONTEXT(c, con); in ggl_clearStencil()
|
/system/core/libpixelflinger/include/pixelflinger/ |
D | pixelflinger.h | 206 void (*pointx)(void *con, const GGLcoord* v, GGLcoord r); 207 void (*linex)(void *con,
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
D | ggl_context.h | 123 #define GGL_CONTEXT(con, c) context_t *con = static_cast<context_t *>(c)
|