Home
last modified time | relevance | path

Searched refs:VERTEX_UNIFORM_VECTORS (Results 1 – 13 of 13) sorted by relevance

/external/swiftshader/src/Main/
DConfig.hpp88 VERTEX_UNIFORM_VECTORS = 256, enumerator
/external/swiftshader/src/OpenGL/libGL/
DDevice.hpp96 float vertexShaderConstantF[sw::VERTEX_UNIFORM_VECTORS][4];
DDevice.cpp140 for(int i = 0; i < VERTEX_UNIFORM_VECTORS; i++) in Device()
466 for(unsigned int i = 0; i < count && startRegister + i < VERTEX_UNIFORM_VECTORS; i++) in setVertexShaderConstantF()
DContext.h317 MAX_VERTEX_UNIFORM_VECTORS = sw::VERTEX_UNIFORM_VECTORS - 3, // Reserve space for gl_DepthRange
/external/swiftshader/src/OpenGL/libGLESv2/
DDevice.hpp92 float vertexShaderConstantF[sw::VERTEX_UNIFORM_VECTORS][4];
DContext.h79 MAX_VERTEX_UNIFORM_VECTORS = sw::VERTEX_UNIFORM_VECTORS - 3, // Reserve space for gl_DepthRange
97 MAX_VERTEX_UNIFORM_COMPONENTS = sw::VERTEX_UNIFORM_VECTORS * 4,
DDevice.cpp141 for(int i = 0; i < VERTEX_UNIFORM_VECTORS; i++) in Device()
431 for(unsigned int i = 0; i < count && startRegister + i < VERTEX_UNIFORM_VECTORS; i++) in setVertexShaderConstantF()
/external/swiftshader/src/D3D9/
DCapabilities.hpp488 static_assert(sw::VERTEX_UNIFORM_VECTORS >= MAX_VERTEX_SHADER_CONST, "");
/external/swiftshader/src/Renderer/
DVertexProcessor.hpp285 …float4 c[VERTEX_UNIFORM_VECTORS + 1]; // One extra for indices out of range, c[VERTEX_UNIFORM_VE…
DRenderer.hpp127 …float4 c[VERTEX_UNIFORM_VECTORS + 1]; // One extra for indices out of range, c[VERTEX_UNIFORM_VE…
DVertexProcessor.cpp148 if(index < VERTEX_UNIFORM_VECTORS) in setFloatConstant()
DRenderer.cpp84 vsDirtyConstF = VERTEX_UNIFORM_VECTORS + 1; in DrawCall()
462 draw->vsDirtyConstF = VERTEX_UNIFORM_VECTORS + 1; in draw()
/external/swiftshader/src/Shader/
DVertexProgram.cpp869 …index = Min(As<UInt4>(index), UInt4(VERTEX_UNIFORM_VECTORS)); // Clamp to constant register rang… in readConstant()