Lines Matching refs:command
87 bit32* MakeAllCommand( bit32* command ) const in MakeAllCommand() argument
89 command = MakeConfigCommand( command ); // 設定用コマンド in MakeAllCommand()
90 if ( isEnable ) command = MakeTableCommand( command ); // フォグの参照テーブルコマンド in MakeAllCommand()
91 return command; in MakeAllCommand()
101 bit32* MakeConfigCommand( bit32* command ) const in MakeConfigCommand() argument
104 …*command++ = ( isEnable ? PICA_DATA_FOG : PICA_DATA_FOG_FALSE ) | ( ( isEnableZFlip ? 1 : 0 ) << 1… in MakeConfigCommand()
105 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_GAS_FOG_MODE, 0x5 ); in MakeConfigCommand()
108 *command++ = colorR | colorG << 8 | colorB << 16; in MakeConfigCommand()
109 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_FOG_COLOR ); in MakeConfigCommand()
111 return command; in MakeConfigCommand()
121 bit32* MakeTableCommand( bit32* command ) const in MakeTableCommand() argument
123 std::memcpy( command, m_TableCommand, sizeof( m_TableCommand ) ); in MakeTableCommand()
124 return command + ( FOG_LOOKUP_TABLE_ELEMENT_NUM + 4 ); in MakeTableCommand()