Lines Matching refs:name
48 BOOL DEMOGfxInitShaderAttribute(DEMOGfxShader *pShader, const char *name, in DEMOGfxInitShaderAttribute() argument
63 u32 location = (u32)GX2GetVertexAttribVarLocation(pShader->pVertexShader, name); in DEMOGfxInitShaderAttribute()
75 BOOL DEMOGfxGetVertexShaderSamplerLocation(DEMOGfxShader *pShader, const char *name) in DEMOGfxGetVertexShaderSamplerLocation() argument
90 (u32)GX2GetVertexSamplerVarLocation(pShader->pVertexShader, name); in DEMOGfxGetVertexShaderSamplerLocation()
98 BOOL DEMOGfxGetPixelShaderSamplerLocation(DEMOGfxShader *pShader, const char *name) in DEMOGfxGetPixelShaderSamplerLocation() argument
113 (u32)GX2GetPixelSamplerVarLocation(pShader->pPixelShader, name); in DEMOGfxGetPixelShaderSamplerLocation()
121 BOOL DEMOGfxGetGeometryShaderSamplerLocation(DEMOGfxShader *pShader, const char *name) in DEMOGfxGetGeometryShaderSamplerLocation() argument
136 (u32)GX2GetGeometrySamplerVarLocation(pShader->pGeometryShader, name); in DEMOGfxGetGeometryShaderSamplerLocation()
144 BOOL DEMOGfxGetVertexShaderUniformLocation(DEMOGfxShader *pShader, const char *name) in DEMOGfxGetVertexShaderUniformLocation() argument
159 (u32)GX2GetVertexUniformVarOffset(pShader->pVertexShader, name); in DEMOGfxGetVertexShaderUniformLocation()
167 BOOL DEMOGfxGetPixelShaderUniformLocation(DEMOGfxShader *pShader, const char *name) in DEMOGfxGetPixelShaderUniformLocation() argument
181 (u32)GX2GetPixelUniformVarOffset(pShader->pPixelShader, name); in DEMOGfxGetPixelShaderUniformLocation()
189 BOOL DEMOGfxGetVertexShaderUniformBlockLocation(DEMOGfxShader *pShader, const char *name) in DEMOGfxGetVertexShaderUniformBlockLocation() argument
201 GX2UniformBlock *block = GX2GetVertexUniformBlock(pShader->pVertexShader, name); in DEMOGfxGetVertexShaderUniformBlockLocation()
213 BOOL DEMOGfxGetPixelShaderUniformBlockLocation(DEMOGfxShader *pShader, const char *name) in DEMOGfxGetPixelShaderUniformBlockLocation() argument
225 GX2UniformBlock *block = GX2GetPixelUniformBlock(pShader->pPixelShader, name); in DEMOGfxGetPixelShaderUniformBlockLocation()
237 BOOL DEMOGfxGetGeometryShaderUniformBlockLocation(DEMOGfxShader *pShader, const char *name) in DEMOGfxGetGeometryShaderUniformBlockLocation() argument
249 GX2UniformBlock *block = GX2GetGeometryUniformBlock(pShader->pGeometryShader, name); in DEMOGfxGetGeometryShaderUniformBlockLocation()