HomeSort by relevance Sort by last modified time
    Searched refs:GGLFormat (Results 1 - 18 of 18) sorted by null

  /system/core/libpixelflinger/
format.cpp 23 static GGLFormat const gPixelFormatInfos[] =
70 const GGLFormat* gglGetPixelFormatTable(size_t* numEntries)
73 *numEntries = sizeof(android::gPixelFormatInfos)/sizeof(GGLFormat);
buffer.cpp 67 const GGLFormat& pixelFormat(c->formats[dst->format]);
116 const GGLFormat* f = &(c->formats[s->format]);
173 const GGLFormat* f = &(c->formats[s->format]);
182 (i==GGLFormat::GREEN || i==GGLFormat::BLUE)) {
260 const GGLFormat* f = &(c->formats[format]);
picker.cpp 57 const GGLFormat& cbf = c->formats[ c->state.buffers.color.format ];
58 if (!cbf.c[GGLFormat::ALPHA].h) {
pixelflinger.cpp 284 c->state.fog.color[GGLFormat::ALPHA]= 0xFF; // unused
285 c->state.fog.color[GGLFormat::RED] = (r - (r>>8))>>8;
286 c->state.fog.color[GGLFormat::GREEN]= (g - (g>>8))>>8;
287 c->state.fog.color[GGLFormat::BLUE] = (b - (b>>8))>>8;
519 if (a) mask |= 1 << GGLFormat::ALPHA;
520 if (r) mask |= 1 << GGLFormat::RED;
521 if (g) mask |= 1 << GGLFormat::GREEN;
522 if (b) mask |= 1 << GGLFormat::BLUE;
scanline.cpp 206 const GGLFormat* f =
843 gen.argb[GGLFormat::ALPHA].c = ci.ydady;
844 gen.argb[GGLFormat::ALPHA].dx = c->shade.dadx;
845 gen.argb[GGLFormat::RED ].c = ci.ydrdy;
846 gen.argb[GGLFormat::RED ].dx = c->shade.drdx;
847 gen.argb[GGLFormat::GREEN].c = ci.ydgdy;
848 gen.argb[GGLFormat::GREEN].dx = c->shade.dgdx;
849 gen.argb[GGLFormat::BLUE ].c = ci.ydbdy;
850 gen.argb[GGLFormat::BLUE ].dx = c->shade.dbdx;
    [all...]
raster.cpp 105 const GGLFormat* fp = &(c->formats[cb->format]);
trap.cpp 455 const GGLFormat* fp = &(c->formats[cb->format]);
    [all...]
  /system/core/include/pixelflinger/
format.h 124 } GGLFormat;
128 extern "C" const GGLFormat* gglGetPixelFormatTable(size_t* numEntries = 0);
130 const GGLFormat* gglGetPixelFormatTable(size_t* numEntries);
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.cpp 122 if (!mCbFormat.c[GGLFormat::ALPHA].h) {
159 int fs = i==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc;
160 int fd = i==GGLFormat::ALPHA ? mBlendDstA : mBlendDst;
161 if (fs==GGL_SRC_ALPHA_SATURATE && i==GGLFormat::ALPHA)
167 (i==GGLFormat::GREEN || i==GGLFormat::BLUE)) {
170 info.needed = (i==GGLFormat::ALPHA) &&
175 info.fog = mFog && info.inDest && (i != GGLFormat::ALPHA);
271 build_component(pixel, parts, GGLFormat::ALPHA, regs);
279 build_component(pixel, parts, GGLFormat::RED, regs)
    [all...]
GGLAssembler.h 224 memset(&format, 0, sizeof(GGLFormat));
226 pixel_t(int r, const GGLFormat* fmt, int f=0)
229 void setTo(int r, const GGLFormat* fmt, int f=0) {
232 GGLFormat format;
305 GGLFormat format;
535 GGLFormat mCbFormat;
blending.cpp 72 int fs = component==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc;
73 int fd = component==GGLFormat::ALPHA ? mBlendDstA : mBlendDst;
74 if (fs==GGL_SRC_ALPHA_SATURATE && component==GGLFormat::ALPHA)
270 if (component==GGLFormat::ALPHA && !isAlphaSourceNeeded()) {
348 extract(factor, dst_pixel, GGLFormat::ALPHA);
texturing.cpp 129 if (mBlending || mDithering || mInfo[GGLFormat::ALPHA].needed) {
303 if (!tmu.format.c[GGLFormat::ALPHA].h) {
308 tmu.mask &= ~(1<<GGLFormat::ALPHA);
    [all...]
  /frameworks/base/libs/ui/
PixelFormat.cpp 88 const GGLFormat *i = gglGetPixelFormatTable(&numEntries) + format;
  /frameworks/base/opengl/libagl/
state.cpp 405 GGLFormat const * formats = gglGetPixelFormatTable();
411 GGLFormat const * formats = gglGetPixelFormatTable();
417 GGLFormat const * formats = gglGetPixelFormatTable();
423 GGLFormat const * formats = gglGetPixelFormatTable();
mipmap.cpp 34 const GGLFormat& pixelFormat(c->rasterizer.formats[base->format]);
texture.cpp 290 const GGLFormat& pixelFormat(c->rasterizer.formats[src.format]);
382 const GGLFormat& pixelFormat(c->rasterizer.formats[formatIdx]);
    [all...]
egl.cpp 246 GGLFormat const* pixelFormatTable;
    [all...]
  /system/core/include/private/pixelflinger/
ggl_context.h 515 const GGLFormat* formats;

Completed in 2325 milliseconds