Home | History | Annotate | Download | only in llvmpipe

Lines Matching defs:color

179  * Get pointer to the swizzled color tile
214 * Get the pointer to a 4x4 color block (within a 64x64 tile).
215 * We'll map the color buffer on demand here.
216 * Note that this may be called even when there's no color buffers - return
225 uint8_t *color;
232 color = lp_rast_get_color_tile_pointer(task, buf, LP_TEX_USAGE_READ_WRITE);
233 assert(color);
239 color = color + pixel_offset;
241 assert(lp_check_alignment(color, 16));
242 return color;
260 uint8_t *color[PIPE_MAX_COLOR_BUFS];
264 /* color buffer */
266 color[i] = lp_rast_get_color_block_pointer(task, i, x, y);
278 color,