Lines Matching refs:frameSurface
144 if (GL_COLOR_BUFFER_BIT & buf && ctx->frameSurface.data) {
145 if (GGL_PIXEL_FORMAT_RGBA_8888 == ctx->frameSurface.format) {
146 unsigned * const end = (unsigned *)ctx->frameSurface.data +
147 ctx->frameSurface.width * ctx->frameSurface.height;
149 for (unsigned * start = (unsigned *)ctx->frameSurface.data; start < end; start++)
151 } else if (GGL_PIXEL_FORMAT_RGB_565 == ctx->frameSurface.format) {
152 short * const end = (short *)ctx->frameSurface.data +
153 ctx->frameSurface.width * ctx->frameSurface.height;
157 for (short * start = (short *)ctx->frameSurface.data; start < end; start++)
190 ctx->frameSurface = *surface;
191 changed |= ctx->frameSurface.format ^ surface->format;
202 memset(&ctx->frameSurface, 0, sizeof(ctx->frameSurface));
205 ctx->state.bufferState.colorFormat = ctx->frameSurface.format;