mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Shadergen: Move comments outside of emitted source code
This commit is contained in:
parent
b7bc520afa
commit
f095e6af0b
1 changed files with 2 additions and 2 deletions
|
@ -4,6 +4,8 @@
|
|||
using namespace PICA;
|
||||
using namespace PICA::ShaderGen;
|
||||
|
||||
// Note: We upload global ambient and fog colour as u32 and decode on the GPU
|
||||
// This shouldn't matter much for GPU performance, especially fog since it's relatively rare
|
||||
static constexpr const char* uniformDefinition = R"(
|
||||
struct LightSource {
|
||||
vec3 specular0;
|
||||
|
@ -24,8 +26,6 @@ static constexpr const char* uniformDefinition = R"(
|
|||
vec4 constantColors[6];
|
||||
vec4 tevBufferColor;
|
||||
vec4 clipCoords;
|
||||
|
||||
// Note: We upload this as a u32 and decode on GPU
|
||||
uint globalAmbientLight;
|
||||
uint inFogColor;
|
||||
LightSource lightSources[8];
|
||||
|
|
Loading…
Add table
Reference in a new issue