Lines Matching refs:geometryIndex

97 ShaderBinaryInfo::GetShaderProgramCommandSize( s32 vertexIndex, s32 geometryIndex ) const  in GetShaderProgramCommandSize()
105 if ( geometryIndex >= 0 ) in GetShaderProgramCommandSize()
107 size += this->GetConstRegCommandSize( geometryIndex ); in GetShaderProgramCommandSize()
110 size += this->GetOutAttrCommandSize( vertexIndex, geometryIndex ); in GetShaderProgramCommandSize()
215 ShaderBinaryInfo::GetOutAttrCommandSize(s32 vertexIndex, s32 geometryIndex) const in GetOutAttrCommandSize()
225 bool hasGeometry = geometryIndex >= 0; in GetOutAttrCommandSize()
385 ShaderBinaryInfo::BuildShaderProgramCommand( s32 vertexIndex, s32 geometryIndex, u32* bufferAddress… in BuildShaderProgramCommand() argument
391 NW_ASSERT( geometryIndex < 0 || this->IsGeometryShader( geometryIndex ) ); in BuildShaderProgramCommand()
392 NW_ASSERT( geometryIndex < this->GetShaderCount() ); in BuildShaderProgramCommand()
394 if ( geometryIndex < 0 ) in BuildShaderProgramCommand()
405 if ( geometryIndex >= 0 ) in BuildShaderProgramCommand()
407 this->BuildConstRegCommand( buffer, geometryIndex ); in BuildShaderProgramCommand()
410 this->BuildOutAttrCommand( buffer, vertexIndex, geometryIndex ); in BuildShaderProgramCommand()
509 ShaderBinaryInfo::BuildOutAttrCommand( SafeBuffer& buffer, s32 vertexIndex, s32 geometryIndex ) con… in BuildOutAttrCommand()
511 bool hasGeometry = geometryIndex >= 0; in BuildOutAttrCommand()
525 …this->GetShaderOutputRegisterNum( vertexIndex, geometryIndex, &shaderOutputNum, &shaderOutputMask … in BuildOutAttrCommand()
526 this->GetShaderOutputRegisterMap( vertexIndex, geometryIndex, &shaderOutputMap[0] ); in BuildOutAttrCommand()
542 geometryEntry = this->GetEntryAddress( geometryIndex ); in BuildOutAttrCommand()
544 u32 geometryMode = this->GetGeometryDataMode( geometryIndex ); in BuildOutAttrCommand()
557 u32 geomMainVertexNum = this->GetGeometryMainVertexNum( geometryIndex ); in BuildOutAttrCommand()
566 u32 geomPatchSize = this->GetGeometryPatchSize( geometryIndex ); in BuildOutAttrCommand()
567 u32 geomStartIndex = this->GetGeometryStartIndex( geometryIndex ); in BuildOutAttrCommand()