Home
last modified time | relevance | path

Searched refs:samplersVS (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/src/OpenGL/libGL/
DProgram.cpp230 ASSERT(samplerIndex < sizeof(samplersVS) / sizeof(samplersVS[0])); in getSamplerMapping()
232 if(samplersVS[samplerIndex].active) in getSamplerMapping()
234 logicalTextureUnit = samplersVS[samplerIndex].logicalTextureUnit; in getSamplerMapping()
258 ASSERT(samplerIndex < sizeof(samplersVS)/sizeof(samplersVS[0])); in getSamplerTextureType()
259 ASSERT(samplersVS[samplerIndex].active); in getSamplerTextureType()
260 return samplersVS[samplerIndex].textureType; in getSamplerTextureType()
1323 samplersVS[index].active = true; in defineUniform()
1324 samplersVS[index].textureType = (type == GL_SAMPLER_CUBE) ? TEXTURE_CUBE : TEXTURE_2D; in defineUniform()
1325 samplersVS[index].logicalTextureUnit = 0; in defineUniform()
1764 ASSERT(samplersVS[samplerIndex].active); in applyUniform1iv()
[all …]
DProgram.h188 Sampler samplersVS[MAX_VERTEX_TEXTURE_IMAGE_UNITS]; variable
/external/swiftshader/src/OpenGL/libGLESv2/
DProgram.cpp334 ASSERT(samplerIndex < sizeof(samplersVS) / sizeof(samplersVS[0])); in getSamplerMapping()
336 if(samplersVS[samplerIndex].active) in getSamplerMapping()
338 logicalTextureUnit = samplersVS[samplerIndex].logicalTextureUnit; in getSamplerMapping()
362 ASSERT(samplerIndex < sizeof(samplersVS)/sizeof(samplersVS[0])); in getSamplerTextureType()
363 ASSERT(samplersVS[samplerIndex].active); in getSamplerTextureType()
364 return samplersVS[samplerIndex].textureType; in getSamplerTextureType()
1749 samplersVS[index].active = true; in defineUniform()
1757 case GL_SAMPLER_2D: samplersVS[index].textureType = TEXTURE_2D; break; in defineUniform()
1761 case GL_SAMPLER_CUBE: samplersVS[index].textureType = TEXTURE_CUBE; break; in defineUniform()
1764 case GL_SAMPLER_3D_OES: samplersVS[index].textureType = TEXTURE_3D; break; in defineUniform()
[all …]
DProgram.h304 Sampler samplersVS[MAX_VERTEX_TEXTURE_IMAGE_UNITS]; variable
/external/mesa3d/src/gallium/drivers/swr/
Dswr_context.h90 swr_jit_sampler samplersVS[PIPE_MAX_SAMPLERS];
Dswr_state.cpp1220 ctx->swrDC.samplersVS); in swr_update_derived()