Lines Matching refs:command
97 bit32* MakeFullCommand( bit32* command ) const;
106 static bit32* MakeDisableCommand( bit32* command );
117 bit32* MakeVtxBoolMapCommand( bit32* command ) const in MakeVtxBoolMapCommand() argument
119 *command++ = 0x7fff0000 | m_VtxShaderBoolMapUniform; in MakeVtxBoolMapCommand()
120 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VS_BOOL ); // 0x2b0 in MakeVtxBoolMapCommand()
121 return command; in MakeVtxBoolMapCommand()
131 bit32* MakeGeoBoolMapCommand( bit32* command ) const in MakeGeoBoolMapCommand() argument
133 *command++ = 0x7fff0000 | m_GeoShaderBoolMapUniform; in MakeGeoBoolMapCommand()
134 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_GS_BOOL ); // 0x280 in MakeGeoBoolMapCommand()
135 return command; in MakeGeoBoolMapCommand()
146 bit32* MakePrepareCommand( bit32* command ) const;
156 bit32* MakeVtxProgramCommand( bit32* command ) const;
167 bit32* MakeGeoProgramCommand( bit32* command ) const;
177 bit32* MakeVtxSwizzleCommand( bit32* command ) const in MakeVtxSwizzleCommand() argument
179 *command++ = 0; in MakeVtxSwizzleCommand()
180 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VS_PROG_SWIZZLE_ADDR ); in MakeVtxSwizzleCommand()
181 … return MakeLoadCommand_( command, PICA_REG_VS_PROG_SWIZZLE_DATA0, m_Swizzle, m_SwizzleCount ); in MakeVtxSwizzleCommand()
192 bit32* MakeGeoSwizzleCommand( bit32* command ) const in MakeGeoSwizzleCommand() argument
194 *command++ = 0; in MakeGeoSwizzleCommand()
195 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_GS_PROG_SWIZZLE_ADDR ); in MakeGeoSwizzleCommand()
196 … return MakeLoadCommand_( command, PICA_REG_GS_PROG_SWIZZLE_DATA0, m_Swizzle, m_SwizzleCount ); in MakeGeoSwizzleCommand()
207 bit32* MakeVtxConstRgCommand( bit32* command ) const in MakeVtxConstRgCommand() argument
209 … std::memcpy( command, m_CmdCacheVtxConst, m_CmdCacheVtxConstNum * sizeof( bit32 ) ); in MakeVtxConstRgCommand()
210 return command + m_CmdCacheVtxConstNum; in MakeVtxConstRgCommand()
221 bit32* MakeGeoConstRgCommand( bit32* command ) const in MakeGeoConstRgCommand() argument
223 … std::memcpy( command, m_CmdCacheGeoConst, m_CmdCacheGeoConstNum * sizeof( bit32 ) ); in MakeGeoConstRgCommand()
224 return command + m_CmdCacheGeoConstNum; in MakeGeoConstRgCommand()
235 bit32* MakeOutAttrCommand( bit32* command ) const in MakeOutAttrCommand() argument
247 *command++ = value_229; in MakeOutAttrCommand()
248 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_DRAW_MODE0, 0x2 ); in MakeOutAttrCommand()
256 *command++ = value_253; in MakeOutAttrCommand()
257 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_DRAW_MODE1, 0x2 ); in MakeOutAttrCommand()
259 … std::memcpy( command, m_CmdCacheOutAttr, m_CmdCacheOutAttrNum * sizeof( bit32 ) ); in MakeOutAttrCommand()
260 return command + m_CmdCacheOutAttrNum; in MakeOutAttrCommand()
413 static bit32* MakeShaderModeCommand_( bit32* command,
427 bit32* command,
438 bit32* MakeOutAttrCommand_( bit32* command );
450 bit32* MakeLoadCommand_( bit32* command,
464 static bit32* MakeDummyCommand_( bit32* command,