mirror of
https://github.com/libretro/RetroArch
synced 2025-02-10 03:39:56 +00:00
5af5222249
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
14 lines
193 B
GLSL
14 lines
193 B
GLSL
#version 100
|
|
|
|
attribute vec4 Position;
|
|
varying vec4 vout_color;
|
|
varying vec3 vout_normal;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = Position;
|
|
vout_color = vec4(1.0);
|
|
vout_normal = vec3(0.5);
|
|
}
|
|
|