This commit is contained in:
2026-01-23 19:09:00 +03:00
parent cc82acc18c
commit 65607ee284
72 changed files with 6422 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
OGRE_NATIVE_GLSL_VERSION_DIRECTIVE
#include <OgreUnifiedShader.h>
OGRE_UNIFORMS(
uniform vec4 ambient;
uniform vec4 diffuse;
)
MAIN_PARAMETERS
MAIN_DECLARATION
{
gl_FragColor = ambient * diffuse;
}