HomeSort by relevance Sort by last modified time
    Searched refs:maxZ (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/mesa3d/src/mesa/main/
bbox.h 37 GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW);
bbox.c 37 GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW)
47 ctx->PrimitiveBoundingBox[6] = maxZ;
  /frameworks/base/libs/hwui/
ShadowTessellator.h 74 const Rect& localClip, float maxZ, VertexBuffer& shadowVertexBuffer);
ShadowTessellator.cpp 34 const Rect& localClip, float maxZ, VertexBuffer& shadowVertexBuffer) {
47 ambientShadowBounds.outset(maxZ * geomFactor * heightFactor);
TessellationCache.cpp 228 float maxZ = -FLT_MAX;
234 maxZ = std::max(maxZ, casterPolygon[i].z);
262 casterBounds, *localClip, maxZ, ambientBuffer);
  /external/skia/src/core/
SkColorLookUpTable.cpp 32 const uint8_t maxZ = fGridPoints[2] - 1;
37 const float z = src[2] * maxZ;
47 iz = (maxZ == iz) ? iz - 1 : iz;
  /external/swiftshader/src/OpenGL/libGL/
Device.hpp 44 float maxZ;
Device.cpp 740 view.maxZ = viewport.maxZ;
  /external/swiftshader/src/OpenGL/libGLES_CM/
Device.hpp 36 float maxZ;
Device.cpp 588 view.maxZ = viewport.maxZ;
  /external/swiftshader/src/Shader/
Constants.hpp 91 dword maxZ[16];
Constants.cpp 323 const dword maxZ[16] = {0x00000000, 0x00000004, 0x00000400, 0x00000404, 0x00040000, 0x00040004, 0x00040400, 0x00040404, 0x04000000, 0x04000004, 0x04000400, 0x04000404, 0x04040000, 0x04040004, 0x04040400, 0x04040404};
331 memcpy(&this->maxZ, &maxZ, sizeof(maxZ));
  /external/swiftshader/src/OpenGL/libGLESv2/
Device.hpp 36 float maxZ;
Device.cpp 865 view.maxZ = viewport.maxZ;
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
depthstencil.h 132 // clamp Z to viewport [minZ..maxZ]
134 simdscalar vMaxZ = _simd_broadcast_ss(&pViewport->maxZ);
223 // clamp Z to viewport [minZ..maxZ]
225 simdscalar vMaxZ = _simd_broadcast_ss(&pViewport->maxZ);
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES31Ext.spec 25 void glPrimitiveBoundingBoxEXT ( GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW )
GLES32.spec 26 void glPrimitiveBoundingBox ( GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW )
  /frameworks/rs/
rsScriptC_LibGL.cpp 178 float *maxX, float *maxY, float *maxZ) {
186 *maxZ = sm->mBBoxMax[2];
rsRuntime.h 68 float *maxX, float *maxY, float *maxZ);
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorConvolution.h 692 const size_t maxZ, const size_t kernelSizeX, const size_t kernelSizeY,
705 const int first_z = blockIdx.z * maxZ;
706 const int last_z = (first_z + maxZ < numZ ? first_z + maxZ : numZ) - 1;
    [all...]
  /external/deqp/framework/opengl/
gluES3PlusWrapperContext.cpp 490 static GLW_APICALL void GLW_APIENTRY dummyPrimitiveBoundingBox (float minX, float minY, float minZ, float minW, float maxX, float maxY, float maxZ, float maxW)
499 DE_UNREF(maxZ);
  /external/swiftshader/src/Renderer/
Renderer.hpp 266 float maxZ;
  /frameworks/base/opengl/java/android/opengl/
GLES31Ext.java 504 // C function void glPrimitiveBoundingBoxEXT ( GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW )
513 float maxZ,
    [all...]
GLES32.java 518 // C function void glPrimitiveBoundingBox ( GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW )
527 float maxZ,
    [all...]
  /external/deqp/modules/gles3/functional/
es3fOcclusionQueryTests.cpp 119 static void generateVertices (std::vector<float>& dst, float width, float height, int primitiveCount, int verticesPerPrimitive, de::Random rnd, float primitiveSize, float minZ, float maxZ)
137 dst[(i+j)*ELEMENTS_PER_VERTEX + 2] = rnd.getFloat(minZ, maxZ); // z

Completed in 488 milliseconds

1 2 3 4