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

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
readpix.c 121 GLfloat *depthValues;
146 depthValues = (GLfloat *) malloc(width * sizeof(GLfloat));
148 if (depthValues) {
151 _mesa_unpack_float_z_row(rb->Format, width, map, depthValues);
152 _mesa_pack_depth_span(ctx, width, dst, type, depthValues, packing);
162 free(depthValues);
pack.c     [all...]
  /external/mesa3d/src/mesa/main/
readpix.c 121 GLfloat *depthValues;
146 depthValues = (GLfloat *) malloc(width * sizeof(GLfloat));
148 if (depthValues) {
151 _mesa_unpack_float_z_row(rb->Format, width, map, depthValues);
152 _mesa_pack_depth_span(ctx, width, dst, type, depthValues, packing);
162 free(depthValues);
pack.c     [all...]
  /external/deqp/modules/glshared/
glsFragOpInteractionCase.cpp 213 static const float depthValues[] = { 0.0f, 0.2f, 0.4f, 0.5f, 0.51f, 0.6f, 0.8f, 0.95f };
214 return rnd.choose<float>(DE_ARRAY_BEGIN(depthValues), DE_ARRAY_END(depthValues));
  /external/deqp/modules/gles2/functional/
es2fDepthStencilTests.cpp 260 float depthValues[numL1CellsX*numL1CellsY];
273 int numValues = DE_LENGTH_OF_ARRAY(depthValues);
277 depthValues[ndx] = -1.0f + depthStep*ndx;
298 renderCmd.params.depth = depthValues[y1*numL1CellsX + x1];;
753 static const float depthValues[] = { -1.0f, -0.8f, -0.6f, -0.4f, -0.2f, 0.0f, 0.2f, 0.4f, 0.6f, 0.8f, 1.0f };
776 params.depth = rnd.choose<float>(DE_ARRAY_BEGIN(depthValues), DE_ARRAY_END(depthValues));
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDepthStencilTests.cpp 260 float depthValues[numL1CellsX*numL1CellsY];
273 int numValues = DE_LENGTH_OF_ARRAY(depthValues);
277 depthValues[ndx] = -1.0f + depthStep*ndx;
298 renderCmd.params.depth = depthValues[y1*numL1CellsX + x1];;
753 static const float depthValues[] = { -1.0f, -0.8f, -0.6f, -0.4f, -0.2f, 0.0f, 0.2f, 0.4f, 0.6f, 0.8f, 1.0f };
776 params.depth = rnd.choose<float>(DE_ARRAY_BEGIN(depthValues), DE_ARRAY_END(depthValues));
    [all...]

Completed in 1091 milliseconds