Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 34) sorted by relevance

12

/CTR-SDK-4.2.5/sources/libraries/gr/CTR/
Dgr_RenderState.cpp25 bit32* RenderState::Culling::MakeCommand( bit32* command, bool isUpdateFBAccess ) const in MakeCommand() argument
43 *command++ = culling; in MakeCommand()
44 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_CULL_FACE ); in MakeCommand()
46 return isUpdateFBAccess ? m_RenderState.fbAccess.MakeCommand( command ) : command; in MakeCommand()
51 … bit32* RenderState::Culling::MakeDisableCommand( bit32* command, bool isClearFrameBufferCache ) in MakeDisableCommand() argument
54 *command++ = 0x0; in MakeDisableCommand()
55 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_CULL_FACE, 0x1 ); in MakeDisableCommand()
59 command = FBAccess::MakeClearCacheCommand( command ); in MakeDisableCommand()
62 return command; in MakeDisableCommand()
67 bit32* RenderState::Blend::MakeCommand( bit32* command, bool isUpdateFBAccess ) const in MakeCommand() argument
[all …]
Dgr_Texture.cpp25 bit32* Texture::Unit0::MakeCommand( bit32* command, bool is_update_texture_func ) const in MakeCommand() argument
29 command = m_Texture.MakeFuncCommand( command ); in MakeCommand()
33 … *command++ = borderColorR | borderColorG << 8 | borderColorB << 16 | borderColorA << 24; in MakeCommand()
34 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_TEXTURE0_BORDER_COLOR ); in MakeCommand()
37 *command++ = PICA_CMD_DATA_TEXTURE_SIZE( width, height ); in MakeCommand()
38 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_TEXTURE0_SIZE ); in MakeCommand()
47 …*command++ = PICA_CMD_DATA_TEXTURE_WRAP_FILTER( magFilter, minFilter, format, wrapT, wrapS, useSha… in MakeCommand()
48 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_TEXTURE0_WRAP_FILTER ); in MakeCommand()
55 …*command++ = PICA_CMD_DATA_TEXTURE_LOD_LEVEL( Float32ToFix13Fraction8( lodBias ), maxLodLevel, min… in MakeCommand()
56 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_TEXTURE0_LOD ); in MakeCommand()
[all …]
Dgr_FragmentLight.cpp25 bit32* FragmentLight::Source::MakeAllCommand( bit32* command ) const in MakeAllCommand()
29 *command++ = specular0B | specular0G << 10 | specular0R << 20; // specular0 in MakeAllCommand()
30 *command++ = PICA_CMD_HEADER_BURSTSEQ( reg, 12 ); // Header in MakeAllCommand()
31 *command++ = specular1B | specular1G << 10 | specular1R << 20; // specular1 in MakeAllCommand()
32 *command++ = diffuseB | diffuseG << 10 | diffuseR << 20; // Diffuse in MakeAllCommand()
33 *command++ = ambientB | ambientG << 10 | ambientR << 20; // Ambient in MakeAllCommand()
34 *command++ = posXY; in MakeAllCommand()
35 *command++ = posZ; in MakeAllCommand()
36 *command++ = spotDirectionXY; in MakeAllCommand()
37 *command++ = spotDirectionZ; in MakeAllCommand()
[all …]
Dgr_Utility.cpp60 bit32* AddDummyDataForCommandBuffer( bit32* command, const size_t addSize ) in AddDummyDataForCommandBuffer() argument
68 *command++ = 0; in AddDummyDataForCommandBuffer()
71 return command; in AddDummyDataForCommandBuffer()
133 bit32* MakeDisableAllCommand( bit32* command ) in MakeDisableAllCommand() argument
136 command = nn::gr::CTR::Shader::MakeDisableCommand( command ); in MakeDisableAllCommand()
139 command = nn::gr::CTR::Vertex::MakeDisableCommand( command ); in MakeDisableAllCommand()
142 command = nn::gr::CTR::Fog::MakeDisableCommand( command ); in MakeDisableAllCommand()
145 command = nn::gr::CTR::FragmentLight::MakeDisableCommand( command ); in MakeDisableAllCommand()
148 command = nn::gr::CTR::Texture::MakeDisableCommand( command ); in MakeDisableAllCommand()
151 *command++ = 0x0; in MakeDisableAllCommand()
[all …]
Dgr_Shader.cpp151 bit32* Shader::MakeFullCommand( bit32* command ) const in MakeFullCommand()
155 command = MakePrepareCommand( command ); in MakeFullCommand()
161 command = MakeGeoProgramCommand( command ); in MakeFullCommand()
162 command = MakeGeoSwizzleCommand( command ); in MakeFullCommand()
163 command = MakeGeoConstRgCommand( command ); in MakeFullCommand()
164 command = MakeGeoBoolMapCommand( command ); in MakeFullCommand()
169 command = MakeVtxProgramCommand( command ); in MakeFullCommand()
170 command = MakeVtxSwizzleCommand( command ); in MakeFullCommand()
171 command = MakeVtxConstRgCommand( command ); in MakeFullCommand()
172 command = MakeVtxBoolMapCommand( command ); in MakeFullCommand()
[all …]
Dgr_ShaderLite.cpp214 bit32* ShaderLite::MakeFullCommand( bit32* command ) const in MakeFullCommand()
218 command = MakePrepareCommand( command ); in MakeFullCommand()
224 command = MakeGeoProgramCommand( command ); in MakeFullCommand()
225 command = MakeGeoSwizzleCommand( command ); in MakeFullCommand()
226 command = MakeGeoConstRgCommand( command ); in MakeFullCommand()
227 command = MakeGeoBoolMapCommand( command ); in MakeFullCommand()
232 command = MakeVtxProgramCommand( command ); in MakeFullCommand()
233 command = MakeVtxSwizzleCommand( command ); in MakeFullCommand()
234 command = MakeVtxConstRgCommand( command ); in MakeFullCommand()
235 command = MakeVtxBoolMapCommand( command ); in MakeFullCommand()
[all …]
Dgr_Viewport.cpp26 bit32* Viewport::MakeCommand( bit32* command ) const in MakeCommand()
35 *command++ = width24; in MakeCommand()
36 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_VIEWPORT_WIDTH1, 0x7 ); in MakeCommand()
39 *command++ = width31; in MakeCommand()
40 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VIEWPORT_WIDTH2 ); in MakeCommand()
43 *command++ = height24; in MakeCommand()
44 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_VIEWPORT_HEIGHT1, 0x7 ); in MakeCommand()
47 *command++ = height31; in MakeCommand()
48 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VIEWPORT_HEIGHT2 ); in MakeCommand()
51 *command++ = PICA_CMD_DATA_VIEWPORT_XY( x, y ); in MakeCommand()
[all …]
Dgr_Vertex.cpp29 bit32* Vertex::MakeDrawCommand( bit32* command, const IndexStream& index_stream ) const in MakeDrawCommand() argument
35 *command++ = 0x1; in MakeDrawCommand()
37 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_START_DRAW_FUNC1 ); in MakeDrawCommand()
40 *command++ = fmt | addr; in MakeDrawCommand()
42 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_INDEX_ARRAY_ADDR_OFFSET ); in MakeDrawCommand()
45 *command++ = index_stream.drawVtxNum; in MakeDrawCommand()
47 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_DRAW_VERTEX_NUM ); in MakeDrawCommand()
48 *command++ = 0x00000000; in MakeDrawCommand()
50 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_START_DRAW_FUNC0, 0x1 ); in MakeDrawCommand()
53 *command++ = 0x00000001; in MakeDrawCommand()
[all …]
Dgr_ProcedureTexture.cpp135 bit32* ProcedureTexture::MakeTableCommand( bit32* command ) const in MakeTableCommand()
139 … std::memcpy( command, m_NoiseLookUpTableCommand, sizeof( m_NoiseLookUpTableCommand ) ); in MakeTableCommand()
140 command += PROCTEX_LOOKUP_TABLE_CMD_NUM; in MakeTableCommand()
143 … std::memcpy( command, m_RgbMapLookUpTableCommand, sizeof( m_RgbMapLookUpTableCommand ) ); in MakeTableCommand()
144 command += PROCTEX_LOOKUP_TABLE_CMD_NUM; in MakeTableCommand()
148 … std::memcpy( command, m_AlphaMapLookUpTableCommand, sizeof( m_AlphaMapLookUpTableCommand ) ); in MakeTableCommand()
149 command += PROCTEX_LOOKUP_TABLE_CMD_NUM; in MakeTableCommand()
152 … std::memcpy( command, m_ColorLookUpTableCommand, sizeof( m_ColorLookUpTableCommand ) ); in MakeTableCommand()
153 command += PROCTEX_COLOR_LOOKUP_TABLE_CMD_NUM; in MakeTableCommand()
155 … std::memcpy( command, m_ColorDiffLookUpTableCommand, sizeof( m_ColorDiffLookUpTableCommand ) ); in MakeTableCommand()
[all …]
Dgr_LookUpTable.cpp44 bit32* command = m_TableCommand; in SetAbsTable() local
49 *command++ = Float32ToUnsignedFix12( table[ i ] ) | in SetAbsTable()
51 *command++ = PICA_CMD_HEADER_BURST( PICA_REG_FRAG_LIGHT_LUT_DATA0, 256 ); in SetAbsTable()
55 *command++ = Float32ToUnsignedFix12( table[ i ] ) | in SetAbsTable()
60 *command++ = Float32ToUnsignedFix12( table[ i ] ) | in SetAbsTable()
62 *command++ = 0; in SetAbsTable()
68 bit32* command = m_TableCommand; in SetNotAbsTable() local
76 *command++ = Float32ToUnsignedFix12( table[ i ] ) | in SetNotAbsTable()
78 *command++ = PICA_CMD_HEADER_BURST( PICA_REG_FRAG_LIGHT_LUT_DATA0, 256 ); in SetNotAbsTable()
82 *command++ = Float32ToUnsignedFix12( table[ i ] ) | in SetNotAbsTable()
[all …]
Dgr_FrameBuffer.cpp25 bit32* FrameBuffer::ColorBuffer::MakeRenderBlockModeCommand( bit32* command ) const in MakeRenderBlockModeCommand()
28 *command++ = blockSize; in MakeRenderBlockModeCommand()
29 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_RENDER_BLOCK_FORMAT ); in MakeRenderBlockModeCommand()
31 return command; in MakeRenderBlockModeCommand()
34 …bit32* FrameBuffer::ColorBuffer::MakeCommand( bit32* command, bool isAddRenderBlockModeCommand ) c… in MakeCommand() argument
39 *command++ = in MakeCommand()
45 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_RENDER_BUFFER_COLOR_MODE ); in MakeCommand()
49 … *command++ = PICA_CMD_DATA_RENDER_BUFFER_COLOR_ADDR( nngxGetPhysicalAddr( virtualAddr ) ); in MakeCommand()
50 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_RENDER_BUFFER_COLOR_ADDR ); in MakeCommand()
54 command = MakeRenderBlockModeCommand( command ); in MakeCommand()
[all …]
Dgr_Fog.cpp28 bit32* command = m_TableCommand; in SetTable() local
31 *command++ = PICA_CMD_DATA_FOG_LUT_INDEX( 0 ); in SetTable()
32 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_FOG_LUT_INDEX ); in SetTable()
36 *command++ = ( Float32ToUnsignedFix11( table[ i ] ) << 13 ) | in SetTable()
38 *command++ = PICA_CMD_HEADER_BURST( PICA_REG_FOG_LUT_DATA0, 128 ); in SetTable()
42 *command++ = ( Float32ToUnsignedFix11( table[ i ] ) << 13 ) | in SetTable()
46 *command++ = ( Float32ToUnsignedFix11( table[ i ] ) << 13 ) | in SetTable()
48 *command++ = 0; in SetTable()
Dgr_Scissor.cpp25 bit32* Scissor::MakeCommand( bit32* command ) const in MakeCommand()
30 *command++ = PICA_CMD_DATA_SCISSOR( isEnable ); in MakeCommand()
31 *command++ = PICA_CMD_HEADER_BURSTSEQ( PICA_REG_SCISSOR, 3 ); in MakeCommand()
32 *command++ = PICA_CMD_DATA_SCISSOR_XY( x, y, bufferWidth, bufferHeight ); in MakeCommand()
33 *command++ = PICA_CMD_DATA_SCISSOR_SIZE( temp_width, temp_height ); in MakeCommand()
35 return command; in MakeCommand()
Dgr_Combiner.cpp25 bit32* Combiner::MakeCommand( bit32* command ) const in MakeCommand()
29 command = stage[ stage_index ].MakeCommand( command ); in MakeCommand()
32 return MakeCombinerBufferCommand( command ); in MakeCommand()
37 bit32* Combiner::MakeCombinerBufferCommand( bit32* command ) const in MakeCombinerBufferCommand()
40 *command++ =PICA_CMD_SET_TEX_ENV_BUFFER_INPUT( in MakeCombinerBufferCommand()
45 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_TEX_ENV_BUFFER_INPUT, 0x2 ); in MakeCombinerBufferCommand()
48 … *command++ = bufferColorR | bufferColorG << 8 | bufferColorB << 16 | bufferColorA << 24; in MakeCombinerBufferCommand()
49 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_TEX_ENV_BUFFER_COLOR ); in MakeCombinerBufferCommand()
50 return command; in MakeCombinerBufferCommand()
55 bit32* Combiner::Stage::MakeCommand( bit32* command ) const in MakeCommand()
[all …]
/CTR-SDK-4.2.5/include/nn/gr/CTR/
Dgr_Fog.h86 bit32* MakeAllCommand( bit32* command ) const in MakeAllCommand() argument
89 command = MakeConfigCommand( command ); in MakeAllCommand()
94 command = MakeTableCommand( command ); in MakeAllCommand()
96 return command; in MakeAllCommand()
107 static bit32* MakeDisableCommand( bit32* command ) in MakeDisableCommand() argument
110 *command++ = PICA_DATA_FOG_FALSE; in MakeDisableCommand()
111 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_GAS_FOG_MODE, 0x1 ); in MakeDisableCommand()
113 return command; in MakeDisableCommand()
123 bit32* MakeConfigCommand( bit32* command ) const in MakeConfigCommand() argument
126 …*command++ = ( isEnable ? PICA_DATA_FOG : PICA_DATA_FOG_FALSE ) | ( ( isEnableZFlip ? 1 : 0 ) << 1… in MakeConfigCommand()
[all …]
Dgr_ProcedureTexture.h329 bit32* MakeAllCommand( bit32* command, bool isAddDummyCommand = true ) const
332 command = MakeConfigCommand( command, isAddDummyCommand );
335 command = MakeTableCommand( command );
337 return command;
348 bit32* MakeConfigCommand( bit32* command, bool isAddDummyCommand = true ) const
350 command = MakeProcedureTextureModeCommand( command, isAddDummyCommand );
351 command = MakeTextureCommand( command, false, false );
352 command = MakeNoiseCommand( command, false, false );
354 return command;
365 … bit32* MakeProcedureTextureModeCommand( bit32* command, bool isAddDummyCommand = true ) const
[all …]
Dgr_Shader.h111 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()
[all …]
Dgr_Vertex.h162 bit32* MakeEnableAttrCommand( bit32* command ) const in MakeEnableAttrCommand() argument
170 std::memcpy( command, m_CmdCacheVertex, m_CmdCacheVertexNum * sizeof( bit32 ) ); in MakeEnableAttrCommand()
171 return command + m_CmdCacheVertexNum; in MakeEnableAttrCommand()
182 bit32* MakeDrawCommand( bit32* command, const IndexStream& index_stream ) const;
191 bit32* MakeDisableAttrCommand( bit32* command ) const in MakeDisableAttrCommand() argument
199 *command++ = 0; in MakeDisableAttrCommand()
200 *command++ = in MakeDisableAttrCommand()
203 *command++ = 0; in MakeDisableAttrCommand()
207 *command++ = 0; in MakeDisableAttrCommand()
211 *command++ = 0; in MakeDisableAttrCommand()
[all …]
Dgr_ShaderLite.h112 bit32* MakeFullCommand( bit32* command ) const;
126 … bit32* MakeShaderCommand( bit32* command, const bool isMakePrepareCommand = true ) const;
135 static bit32* MakeDisableCommand( bit32* command );
146 bit32* MakeVtxBoolMapCommand( bit32* command ) const in MakeVtxBoolMapCommand() argument
148 *command++ = 0x7fff0000 | m_VtxShaderBoolMapUniform; in MakeVtxBoolMapCommand()
149 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VS_BOOL ); // 0x2b0 in MakeVtxBoolMapCommand()
150 return command; in MakeVtxBoolMapCommand()
160 bit32* MakeGeoBoolMapCommand( bit32* command ) const in MakeGeoBoolMapCommand() argument
162 *command++ = 0x7fff0000 | m_GeoShaderBoolMapUniform; in MakeGeoBoolMapCommand()
163 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_GS_BOOL ); // 0x280 in MakeGeoBoolMapCommand()
[all …]
Dgr_Utility.h163 bit32* AddDummyDataForCommandBuffer( bit32* command, const size_t addSize );
202 … inline bit32* MakeUniformCommandVS( bit32* command, u8 location, const nn::math::MTX34& mtx34 ) in MakeUniformCommandVS() argument
204 *command++ = 0x80000000 | location; in MakeUniformCommandVS()
205 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VS_FLOAT_ADDR ); in MakeUniformCommandVS()
206 … CopyMtx34WithHeader( reinterpret_cast<f32*>( command ), &mtx34, PICA_CMD_HEADER_VS_F32( 3 ) ); in MakeUniformCommandVS()
207 return command + 14; in MakeUniformCommandVS()
221 … inline bit32* MakeUniformCommandVS( bit32* command, u8 location, const nn::math::MTX44& mtx44 ) in MakeUniformCommandVS() argument
223 *command++ = 0x80000000 | location; in MakeUniformCommandVS()
224 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VS_FLOAT_ADDR ); in MakeUniformCommandVS()
225 … CopyMtx44WithHeader( reinterpret_cast<f32*>( command ), &mtx44, PICA_CMD_HEADER_VS_F32( 4 ) ); in MakeUniformCommandVS()
[all …]
Dgr_BindSymbol.h146 bit32* MakeUniformCommand( bit32* command, const nn::math::MTX34& mtx34 ) const in MakeUniformCommand() argument
148 return MakeUniformCommandVS( command, start, mtx34 ); in MakeUniformCommand()
159 bit32* MakeUniformCommand( bit32* command, const nn::math::MTX44& mtx44 ) const in MakeUniformCommand() argument
161 return MakeUniformCommandVS( command, start, mtx44 ); in MakeUniformCommand()
172 bit32* MakeUniformCommand( bit32* command, const nn::math::VEC4& vec4 ) const in MakeUniformCommand() argument
174 return MakeUniformCommandVS( command, start, vec4 ); in MakeUniformCommand()
187 … bit32* MakeUniformCommand( bit32* command, const nn::math::VEC4 vec4[], const int num ) const in MakeUniformCommand() argument
189 return MakeUniformCommandVS( command, start, vec4, num ); in MakeUniformCommand()
214 bit32* MakeUniformCommand( bit32* command, u8 x, u8 y, u8 z ) const in MakeUniformCommand() argument
216 return MakeUniformCommandVS( command, start, x, y, z ); in MakeUniformCommand()
[all …]
Dgr_LookUpTable.h87 bit32* MakeCommand( bit32* command, const PicaDataFragLightSampler type ) const in MakeCommand() argument
90 *command++ = PICA_CMD_DATA_FRAG_LIGHT_LUT( 0, type ); in MakeCommand()
91 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_FRAG_LIGHT_LUT ); in MakeCommand()
93 std::memcpy( command, m_TableCommand, sizeof( m_TableCommand ) ); in MakeCommand()
95 return command + LOOKUP_TABLE_CMD_NUM; in MakeCommand()
106 bit32* MakeSpotTableCommand( bit32* command, u8 light_id ) const in MakeSpotTableCommand() argument
108 …return MakeCommand( command, static_cast< PicaDataFragLightSampler >( PICA_DATA_SAMPLER_SP + light… in MakeSpotTableCommand()
119 bit32* MakeDistAttnTableCommand( bit32* command, u8 light_id ) const in MakeDistAttnTableCommand() argument
121 …return MakeCommand( command, static_cast< PicaDataFragLightSampler >( PICA_DATA_SAMPLER_DA + light… in MakeDistAttnTableCommand()
Dgr_RenderState.h101 bit32* MakeCommand( bit32* command, bool isUpdateFBAccess = true ) const;
112 … static bit32* MakeDisableCommand( bit32* command, bool isClearFrameBufferCache = true );
224 bit32* MakeCommand( bit32* command, bool isUpdateFBAccess = true ) const;
234 … static bit32* MakeDisableCommand( bit32* command, bool isClearFrameBufferCache = true );
280 bit32* MakeCommand( bit32* command, bool isUpdateFBAccess = true ) const;
310 bit32* MakeCommand( bit32* command,
322 bit32* MakeTextureCommand( bit32* command,
332 bit32* MakeAttenuationCommand( bit32* command ) const;
478 bit32* MakeCommand( bit32* command, bool isUpdateFBAccess = true ) const;
488 … static bit32* MakeDisableCommand( bit32* command, bool isClearFrameBufferCache = true );
[all …]
Dgr_Scissor.h78 bit32* MakeCommand( bit32* command ) const;
89 static bit32* MakeDisableCommand( bit32* command, in MakeDisableCommand() argument
97 *command++ = PICA_CMD_DATA_SCISSOR( false ); in MakeDisableCommand()
98 *command++ = PICA_CMD_HEADER_BURSTSEQ( PICA_REG_SCISSOR, 3 ); in MakeDisableCommand()
99 *command++ = 0; in MakeDisableCommand()
100 *command++ = PICA_CMD_DATA_SCISSOR_SIZE( temp_width, temp_height ); in MakeDisableCommand()
102 return command; in MakeDisableCommand()
Dgr_Combiner.h207 bit32* MakeCommand( bit32* command ) const;
216 bit32* MakeConstantColorCommand( bit32* command ) const in MakeConstantColorCommand() argument
223 *command++ = PICA_CMD_DATA_TEX_ENV_CONST( in MakeConstantColorCommand()
227 *command++ = PICA_CMD_HEADER_SINGLE( constColorReg ); in MakeConstantColorCommand()
229 return command; in MakeConstantColorCommand()
299 bit32* MakeCommand( bit32* command ) const;
309 bit32* MakeCombinerBufferCommand( bit32* command ) const;

12