HomeSort by relevance Sort by last modified time
    Searched defs:stencilVals (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_depth_test.c 50 ubyte stencilVals[TGSI_QUAD_SIZE];
88 data->stencilVals[j] = tile->data.depth32[y][x] >> 24;
97 data->stencilVals[j] = tile->data.depth32[y][x] & 0xff;
105 data->stencilVals[j] = tile->data.stencil8[y][x];
120 data->stencilVals[j] = (tile->data.depth64[y][x] >> 32) & 0xff;
263 * Write data->bzzzz[] values and data->stencilVals into the Z/stencil buffer.
293 tile->data.depth32[y][x] = (data->stencilVals[j] << 24) | data->bzzzz[j];
300 tile->data.depth32[y][x] = (data->bzzzz[j] << 8) | data->stencilVals[j];
314 tile->data.stencil8[y][x] = data->stencilVals[j];
328 tile->data.depth64[y][x] = (uint64_t)data->bzzzz[j] | ((uint64_t)data->stencilVals[j] << 32)
    [all...]
  /external/mesa3d/src/mesa/main/
readpix.c 681 GLubyte *depthMap, *stencilMap, *stencilVals;
702 stencilVals = malloc(width * sizeof(GLubyte));
704 if (stencilVals) {
708 stencilMap, stencilVals);
711 dst[i] = (dst[i] & 0xffffff00) | stencilVals[i];
723 free(stencilVals);
744 GLubyte *stencilVals;
773 stencilVals = malloc(width * sizeof(GLubyte));
776 if (stencilVals && depthVals) {
780 stencilMap, stencilVals);
    [all...]

Completed in 208 milliseconds