Home
last modified time | relevance | path

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

12

/CTR-SDK-1.0.0/CTR_SDK/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_Shader.cpp121 bit32* Shader::MakeFullCommand( bit32* command ) const in MakeFullCommand()
124 command = MakePrepareCommand( command ); in MakeFullCommand()
129 command = MakeGeoProgramCommand( command ); in MakeFullCommand()
130 command = MakeGeoSwizzleCommand( command ); in MakeFullCommand()
131 command = MakeGeoConstRgCommand( command ); in MakeFullCommand()
132 command = MakeGeoBoolMapCommand( command ); in MakeFullCommand()
136 command = MakeVtxProgramCommand( command ); in MakeFullCommand()
137 command = MakeVtxSwizzleCommand( command ); in MakeFullCommand()
138 command = MakeVtxConstRgCommand( command ); in MakeFullCommand()
139 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_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, 128 ); in SetAbsTable()
55 *command++ = Float32ToUnsignedFix12( table[ i ] ) | in SetAbsTable()
58 *command++ = 0; in SetAbsTable()
60 *command++ = Float32ToUnsignedFix12( table[ i ] )| in SetAbsTable()
62 *command++ = PICA_CMD_HEADER_BURST( PICA_REG_FRAG_LIGHT_LUT_DATA0, 128 ); in SetAbsTable()
66 *command++ = Float32ToUnsignedFix12( table[ i ] ) | in SetAbsTable()
71 *command++ = Float32ToUnsignedFix12( table[ i ] ) | in SetAbsTable()
73 *command++ = 0; in SetAbsTable()
[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_FrameBuffer.cpp25 bit32* FrameBuffer::ColorBuffer::MakeCommand( bit32* command ) const in MakeCommand()
30 *command++ = in MakeCommand()
36 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_RENDER_BUFFER_COLOR_MODE ); in MakeCommand()
40 … *command++ = PICA_CMD_DATA_RENDER_BUFFER_COLOR_ADDR( nngxGetPhysicalAddr( virtualAddr ) ); in MakeCommand()
41 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_RENDER_BUFFER_COLOR_ADDR ); in MakeCommand()
43 return command; in MakeCommand()
48 bit32* FrameBuffer::DepthStencilBuffer::MakeCommand( bit32* command ) const in MakeCommand()
52 *command++ = PICA_CMD_DATA_RENDER_BUFFER_DEPTH_MODE( format ); in MakeCommand()
53 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_RENDER_BUFFER_DEPTH_MODE ); in MakeCommand()
57 … *command++ = PICA_CMD_DATA_RENDER_BUFFER_DEPTH_ADDR( nngxGetPhysicalAddr( virtualAddr ) ); in MakeCommand()
[all …]
Dgr_Utility.cpp91 bit32* MakeDisableAllCommand( bit32* command ) in MakeDisableAllCommand() argument
94 command = nn::gr::CTR::Shader::MakeDisableCommand( command ); in MakeDisableAllCommand()
97 command = nn::gr::CTR::Vertex::MakeDisableCommand( command ); in MakeDisableAllCommand()
100 command = nn::gr::CTR::Fog::MakeDisableCommand( command ); in MakeDisableAllCommand()
103 command = nn::gr::CTR::FragmentLight::MakeDisableCommand( command ); in MakeDisableAllCommand()
106 command = nn::gr::CTR::Texture::MakeDisableCommand( command ); in MakeDisableAllCommand()
109 *command++ = 0x0; in MakeDisableAllCommand()
110 …*command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_EARLY_DEPTH_TEST1, 0x1 ); … in MakeDisableAllCommand()
112 *command++ = PICA_CMD_HEADER_SINGLE_BE( PICA_REG_EARLY_DEPTH_TEST2, 0x1 ); in MakeDisableAllCommand()
113 *command++ = 0x0; in MakeDisableAllCommand()
[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_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-1.0.0/CTR_SDK/include/nn/gr/CTR/
Dgr_Shadow.h53 …bit32* MakeCommand( bit32* command, bool isAddDummyCommand = true, bool isAddCacheClearCommand = t…
55 command = MakeTextureCommand( command, isAddDummyCommand );
56 command = MakeAttenuationCommand( command, isAddCacheClearCommand );
58 return command;
69 bit32* MakeTextureCommand( bit32* command, bool isAddDummyCommand = true ) const
74 *command++ = 0x0;
75 *command++ = PICA_CMD_HEADER_BURST_BE( PICA_REG_TEXTURE_FUNC, 0x3, 0x0 );
77 *command++ = 0x0;
78 *command++ = 0x0;
87 *command++ =
[all …]
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_Vertex.h134 bit32* MakeEnableAttrCommand( bit32* command ) const in MakeEnableAttrCommand() argument
142 std::memcpy( command, m_CmdCacheVertex, m_CmdCacheVertexNum * sizeof( bit32 ) ); in MakeEnableAttrCommand()
143 return command + m_CmdCacheVertexNum; in MakeEnableAttrCommand()
154 bit32* MakeDrawCommand( bit32* command, const IndexStream& index_stream ) const;
163 bit32* MakeDisableAttrCommand( bit32* command ) const in MakeDisableAttrCommand() argument
171 *command++ = 0; in MakeDisableAttrCommand()
172 *command++ = in MakeDisableAttrCommand()
175 *command++ = 0; in MakeDisableAttrCommand()
179 *command++ = 0; in MakeDisableAttrCommand()
183 *command++ = 0; in MakeDisableAttrCommand()
[all …]
Dgr_Shader.h97 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()
[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_Utility.h70 … inline bit32* MakeUniformCommandVS( bit32* command, u8 location, const nn::math::MTX34& mtx34 ) in MakeUniformCommandVS() argument
72 *command++ = 0x80000000 | location; in MakeUniformCommandVS()
73 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VS_FLOAT_ADDR ); in MakeUniformCommandVS()
74 … CopyMtx34WithHeader( reinterpret_cast<f32*>( command ), &mtx34, PICA_CMD_HEADER_VS_F32( 3 ) ); in MakeUniformCommandVS()
75 return command + 14; in MakeUniformCommandVS()
89 … inline bit32* MakeUniformCommandVS( bit32* command, u8 location, const nn::math::MTX44& mtx44 ) in MakeUniformCommandVS() argument
91 *command++ = 0x80000000 | location; in MakeUniformCommandVS()
92 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_VS_FLOAT_ADDR ); in MakeUniformCommandVS()
93 … CopyMtx44WithHeader( reinterpret_cast<f32*>( command ), &mtx44, PICA_CMD_HEADER_VS_F32( 4 ) ); in MakeUniformCommandVS()
94 return command + 18; in MakeUniformCommandVS()
[all …]
Dgr_BindSymbol.h147 bit32* MakeUniformCommand( bit32* command, const nn::math::MTX34& mtx34 ) const in MakeUniformCommand() argument
149 return MakeUniformCommandVS( command, start, mtx34 ); in MakeUniformCommand()
160 bit32* MakeUniformCommand( bit32* command, const nn::math::MTX44& mtx44 ) const in MakeUniformCommand() argument
162 return MakeUniformCommandVS( command, start, mtx44 ); in MakeUniformCommand()
173 bit32* MakeUniformCommand( bit32* command, const nn::math::VEC4& vec4 ) const in MakeUniformCommand() argument
175 return MakeUniformCommandVS( command, start, vec4 ); in MakeUniformCommand()
188 … bit32* MakeUniformCommand( bit32* command, const nn::math::VEC4 vec4[], const int num ) const in MakeUniformCommand() argument
190 return MakeUniformCommandVS( command, start, vec4, num ); in MakeUniformCommand()
215 bit32* MakeUniformCommand( bit32* command, u8 x, u8 y, u8 z ) const in MakeUniformCommand() argument
217 return MakeUniformCommandVS( command, start, x, y, z ); in MakeUniformCommand()
[all …]
Dgr_LookUpTable.h86 bit32* MakeCommand( bit32* command, const PicaDataFragLightSampler type ) const in MakeCommand() argument
89 *command++ = PICA_CMD_DATA_FRAG_LIGHT_LUT( 0, type ); in MakeCommand()
90 *command++ = PICA_CMD_HEADER_SINGLE( PICA_REG_FRAG_LIGHT_LUT ); in MakeCommand()
92 std::memcpy( command, m_TableCommand, sizeof( m_TableCommand ) ); in MakeCommand()
94 return command + ( LOOKUP_TABLE_ELEMENT_NUM + 4 ); in MakeCommand()
105 bit32* MakeSpotTableCommand( bit32* command, u8 light_id ) const in MakeSpotTableCommand() argument
107 …return MakeCommand( command, static_cast< PicaDataFragLightSampler >( PICA_DATA_SAMPLER_SP + light… in MakeSpotTableCommand()
118 bit32* MakeDistAttnTableCommand( bit32* command, u8 light_id ) const in MakeDistAttnTableCommand() argument
120 …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 );
279 bit32* MakeCommand( bit32* command, bool isUpdateFBAccess = true ) const;
379 bit32* MakeCommand( bit32* command, bool isUpdateFBAccess = true ) const;
389 … static bit32* MakeDisableCommand( bit32* command, bool isClearFrameBufferCache = true );
446 bit32* MakeCommand( bit32* command, bool isUpdateFBAccess = true ) const;
457 … static bit32* MakeDisableCommand( bit32* command, bool isClearFrameBufferCache = true );
541 bit32* MakeCommand( bit32* command, bool isUpdateFBAccess = true ) const;
[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_Texture.h245 bit32* MakeCommand( bit32* command, bool is_update_texture_func = true ) const;
281 bit32* MakeCommand( bit32* command, bool is_update_texture_func = true ) const;
324 bit32* MakeCommand( bit32* command, bool is_update_texture_func = true ) const;
368 bit32* MakeCommand( bit32* command, bool is_update_texture_func = true ) const;
420 bit32* MakeCommand( bit32* command, bool isAddDummyCommand = true ) const;
430 bit32* MakeFuncCommand( bit32* command, bool isAddDummyCommand = true ) const;
440 static bit32* MakeDisableCommand( bit32* command, bool isAddDummyCommand = true );
450 static bit32* MakeDummyCommand_( bit32* command );
Dgr_FragmentLight.h294 bit32* MakeAllCommand( bit32* command ) const;
303 bit32* MakeCommand( bit32* command ) const;
311 bit32* MakeColorCommand( bit32* command ) const;
319 bit32* MakeGeometryCommand( bit32* command ) const;
647 bit32* MakeLightSourceCommand( bit32* command ) const;
656 bit32* MakeLutConfigCommand( bit32* command ) const;
666 bit32* MakeLightEnvCommand( bit32* command, bool isAddDummyCommand = true ) const;
676 bit32* MakeAllCommand( bit32* command, bool isAddDummyCommand = true ) const;
686 static bit32* MakeDisableCommand( bit32* command, bool isAddDummyCommand = true );

12