Lines Matching refs:command

111                 bit32* MakeFullCommand( bit32* command ) const;
125 … bit32* MakeShaderCommand( bit32* command, const bool isMakePrepareCommand = true ) const;
134 static bit32* MakeDisableCommand( bit32* command );
145 bit32* MakeVtxBoolMapCommand( bit32* command ) const in MakeVtxBoolMapCommand() argument
147 *command++ = 0x7fff0000 | m_VtxShaderBoolMapUniform; in MakeVtxBoolMapCommand()
148 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VS_BOOL ); // 0x2b0 in MakeVtxBoolMapCommand()
149 return command; in MakeVtxBoolMapCommand()
159 bit32* MakeGeoBoolMapCommand( bit32* command ) const in MakeGeoBoolMapCommand() argument
161 *command++ = 0x7fff0000 | m_GeoShaderBoolMapUniform; in MakeGeoBoolMapCommand()
162 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_GS_BOOL ); // 0x280 in MakeGeoBoolMapCommand()
163 return command; in MakeGeoBoolMapCommand()
174 bit32* MakePrepareCommand( bit32* command ) const;
184 bit32* MakeVtxProgramCommand( bit32* command ) const;
195 bit32* MakeGeoProgramCommand( bit32* command ) const;
205 bit32* MakeVtxSwizzleCommand( bit32* command ) const in MakeVtxSwizzleCommand() argument
207 *command++ = 0; in MakeVtxSwizzleCommand()
208 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VS_PROG_SWIZZLE_ADDR ); in MakeVtxSwizzleCommand()
209 … return MakeLoadCommand_( command, PICA_REG_VS_PROG_SWIZZLE_DATA0, m_Swizzle, m_SwizzleCount ); in MakeVtxSwizzleCommand()
220 bit32* MakeGeoSwizzleCommand( bit32* command ) const in MakeGeoSwizzleCommand() argument
222 *command++ = 0; in MakeGeoSwizzleCommand()
223 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_GS_PROG_SWIZZLE_ADDR ); in MakeGeoSwizzleCommand()
224 … return MakeLoadCommand_( command, PICA_REG_GS_PROG_SWIZZLE_DATA0, m_Swizzle, m_SwizzleCount ); in MakeGeoSwizzleCommand()
235 bit32* MakeVtxConstRgCommand( bit32* command ) const in MakeVtxConstRgCommand() argument
237 std::memcpy( command, m_CmdCacheConstArray[ m_VtxShaderIndex ], in MakeVtxConstRgCommand()
239 return command + m_CmdCacheConstNumArray[ m_VtxShaderIndex ]; in MakeVtxConstRgCommand()
250 bit32* MakeGeoConstRgCommand( bit32* command ) const in MakeGeoConstRgCommand() argument
252 std::memcpy( command, m_CmdCacheConstArray[ m_GeoShaderIndex ], in MakeGeoConstRgCommand()
254 return command + m_CmdCacheConstNumArray[ m_GeoShaderIndex ]; in MakeGeoConstRgCommand()
265 bit32* MakeOutAttrCommand( bit32* command ) const in MakeOutAttrCommand() argument
277 *command++ = value_229; in MakeOutAttrCommand()
278 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_DRAW_MODE0, 0x2 ); in MakeOutAttrCommand()
286 *command++ = value_253; in MakeOutAttrCommand()
287 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_DRAW_MODE1, 0x2 ); in MakeOutAttrCommand()
289 std::memcpy( command, m_CmdCacheOutAttrArray, in MakeOutAttrCommand()
292 return command + m_CmdCacheOutAttrNum; in MakeOutAttrCommand()
470 static bit32* MakeShaderModeCommand_( bit32* command,
483 bit32* MakeConstRgCommand_( bit32* command,
495 …bit32* MakeOutAttrCommand_( bit32* command, const s32 vtx_shader_index, const s32 geo_shader_index…
507 bit32* MakeLoadCommand_( bit32* command,
521 static bit32* MakeDummyCommand_( bit32* command,