| /CafeSDK-2.12.13/system/src/lib/demo/ |
| D | demoGfxShader.c | 63 u32 location = (u32)GX2GetVertexAttribVarLocation(pShader->pVertexShader, name); in DEMOGfxInitShaderAttribute() local 64 ASSERT(DEMOGfxCheckShaderLocation(location)); in DEMOGfxInitShaderAttribute() 68 location, bufferIndex, offset, format); in DEMOGfxInitShaderAttribute() 89 pShader->samplersVS.location[pShader->samplersVS.count] = in DEMOGfxGetVertexShaderSamplerLocation() 91 ASSERT(DEMOGfxCheckShaderLocation(pShader->samplersVS.location[pShader->samplersVS.count])); in DEMOGfxGetVertexShaderSamplerLocation() 112 pShader->samplersPS.location[pShader->samplersPS.count] = in DEMOGfxGetPixelShaderSamplerLocation() 114 ASSERT(DEMOGfxCheckShaderLocation(pShader->samplersPS.location[pShader->samplersPS.count])); in DEMOGfxGetPixelShaderSamplerLocation() 135 pShader->samplersGS.location[pShader->samplersGS.count] = in DEMOGfxGetGeometryShaderSamplerLocation() 137 ASSERT(DEMOGfxCheckShaderLocation(pShader->samplersGS.location[pShader->samplersGS.count])); in DEMOGfxGetGeometryShaderSamplerLocation() 158 pShader->uniformsVS.location[pShader->uniformsVS.count] = in DEMOGfxGetVertexShaderUniformLocation() [all …]
|
| D | demoFont.c | 240 GX2SetVertexUniformReg(s_Shader.uniformsVS.location[1], 1*4, &pFontData->charMagScale[0]); in DEMOFontPuts() 243 GX2SetPixelUniformReg(s_Shader.uniformsPS.location[0], 1*4, &pFontData->color); in DEMOFontPuts() 310 GX2SetVertexUniformReg(s_Shader.uniformsVS.location[0], 1*4, &basePos); in DEMOFontPuts() 540 GX2SetPixelTexture(&pFont->TexData, pShader->samplersPS.location[0]); in SetFontTexture() 656 GX2SetPixelSampler(&s_sampler, s_Shader.samplersPS.location[0]); in DEMOFontAddInstance()
|
| /CafeSDK-2.12.13/system/include/cafe/demo/ |
| D | demoGfxShader.h | 31 u32 location[GX2_MAX_SAMPLERS]; member 45 u32 location[GX2_MAX_VS_UNIFORM_VARS]; member 59 u32 location[GX2_MAX_PS_UNIFORM_VARS]; member 72 u32 location[GX2_MAX_UNIFORM_BLOCKS]; member 142 inline BOOL DEMOGfxCheckShaderLocation(u32 location) in DEMOGfxCheckShaderLocation() argument 144 if(location == (u32)(-1)) in DEMOGfxCheckShaderLocation()
|
| /CafeSDK-2.12.13/system/src/lib/demo/headers/cafe/demo/ |
| D | demoGfxShader.h | 31 u32 location[GX2_MAX_SAMPLERS]; member 45 u32 location[GX2_MAX_VS_UNIFORM_VARS]; member 59 u32 location[GX2_MAX_PS_UNIFORM_VARS]; member 72 u32 location[GX2_MAX_UNIFORM_BLOCKS]; member 142 inline BOOL DEMOGfxCheckShaderLocation(u32 location) in DEMOGfxCheckShaderLocation() argument 144 if(location == (u32)(-1)) in DEMOGfxCheckShaderLocation()
|
| /CafeSDK-2.12.13/system/src/tool/gfx/projects/SLConverter/DeferredTest/ |
| D | deferredRendering.cpp | 785 …GX2SetVertexUniformReg(GeometryPass.shaders.uniformsVS.location[uniformVSCount++], 4*4, GeometryPa… in GeometryPassDraw() 786 …GX2SetVertexUniformReg(GeometryPass.shaders.uniformsVS.location[uniformVSCount++], 4*4, GeometryPa… in GeometryPassDraw() 788 …GX2SetPixelUniformReg(GeometryPass.shaders.uniformsPS.location[uniformPSCount], 4, &GeometryPass.c… in GeometryPassDraw() 869 …GX2SetPixelTexture(&LightingPass.myTextureBuffer[0], LightingPass.shaders.samplersPS.location[samp… in LightingPassDraw() 870 …GX2SetPixelSampler(&LightingPass.mySampler, LightingPass.shaders.samplersPS.location[samp… in LightingPassDraw() 872 …GX2SetPixelTexture(&LightingPass.myTextureBuffer[1], LightingPass.shaders.samplersPS.location[samp… in LightingPassDraw() 873 …GX2SetPixelSampler(&LightingPass.mySampler, LightingPass.shaders.samplersPS.location[samp… in LightingPassDraw() 875 …GX2SetPixelTexture(&LightingPass.myTextureBuffer[2], LightingPass.shaders.samplersPS.location[samp… in LightingPassDraw() 876 …GX2SetPixelSampler(&LightingPass.mySampler, LightingPass.shaders.samplersPS.location[samp… in LightingPassDraw() 879 …GX2SetPixelUniformReg(LightingPass.shaders.uniformsPS.location[uniformPSCount], 4, &LightingPass.a… in LightingPassDraw() [all …]
|
| /CafeSDK-2.12.13/system/include/cafe/gx2/ |
| D | gx2Shaders.h | 78 u32 location; member 131 u32 location; member 139 u32 location; member 174 u32 location; member 1072 void GX2API GX2SetVertexUniformBlock(u32 location, u32 size, const void* addr); 1092 void GX2API GX2SetGeometryUniformBlock(u32 location, u32 size, const void* addr); 1114 void GX2API GX2SetPixelUniformBlock(u32 location, u32 size, const void* addr); 1138 void GX2API GX2SetComputeUniformBlock(u32 location, u32 size, const void* addr); 1282 return (s32) sampler->location; in GX2GetVertexSamplerVarLocation() 1307 return (s32) sampler->location; in GX2GetGeometrySamplerVarLocation() [all …]
|
| D | gx2rBuffer.h | 229 void GX2API GX2RSetVertexUniformBlock(const GX2RBuffer* uniformBlock, u32 location, u32 byteOffset); 244 void GX2API GX2RSetGeometryUniformBlock(const GX2RBuffer* uniformBlock, u32 location, u32 byteOffse… 259 void GX2API GX2RSetPixelUniformBlock(const GX2RBuffer* uniformBlock, u32 location, u32 byteOffset);
|
| /CafeSDK-2.12.13/system/src/tool/cafex/ |
| D | MionUDP.cs | 127 internal static MionIdentifier TryCreate(byte[] broadcast_reciept, IPEndPoint location) in TryCreate() argument 147 return new MionIdentifier(broadcast_reciept, location); in TryCreate() 155 private MionIdentifier(byte[] broadcast_reciept, IPEndPoint location) in MionIdentifier() argument 160 NetworkAddress = location; in MionIdentifier()
|
| /CafeSDK-2.12.13/system/src/tool/gfx/projects/gfd/ |
| D | gfdFileShader.cpp | 149 u32 location; member 171 u32 location; member 180 u32 location; member 611 pUBout32[i].location = pUBin64[i].location; in GFDRepackUniformBlockArrayFor32Bit() 643 pAVout32[i].location = pAVin64[i].location; in GFDRepackAttribVarArrayFor32Bit() 657 pSVout32[i].location = pSVin64[i].location; in GFDRepackSamplerVarArrayFor32Bit() 1934 varTypeName[pAVI->type], pAVI->arrayCount, pAVI->location, in _GFDWriteGX2AttributesAsCode() 1953 samplerTypeName[pSVI->type], pSVI->location, in _GFDWriteGX2SamplersAsCode() 1996 pUBI->location, pUBI->size, in _GFDGX2UniformBlockAsCode()
|
| /CafeSDK-2.12.13/ |
| D | cafe.bat | 28 :: Default location of CAFE_ROOT (location of cafe.bat)
|