diff options
Diffstat (limited to '3rdparty/bgfx/examples/41-tess/varying.def.sc')
-rw-r--r-- | 3rdparty/bgfx/examples/41-tess/varying.def.sc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3rdparty/bgfx/examples/41-tess/varying.def.sc b/3rdparty/bgfx/examples/41-tess/varying.def.sc new file mode 100644 index 00000000000..741df32452c --- /dev/null +++ b/3rdparty/bgfx/examples/41-tess/varying.def.sc @@ -0,0 +1,13 @@ +vec2 v_texcoord0 : TEXCOORD0 = vec2(0.0, 0.0); +vec3 v_position : TEXCOORD1 = vec3(0.0, 0.0, 0.0); +vec3 v_view : TEXCOORD2 = vec3(0.0, 0.0, 0.0); +vec3 v_normal : NORMAL = vec3(0.0, 0.0, 1.0); +vec3 v_tangent : TANGENT = vec3(1.0, 0.0, 0.0); +vec3 v_bitangent : BINORMAL = vec3(0.0, 1.0, 0.0); +vec4 v_color0 : COLOR = vec4(1.0, 0.0, 0.0, 1.0); + +vec3 a_position : POSITION; +vec4 a_normal : NORMAL; +vec4 a_tangent : TANGENT; +vec2 a_texcoord0 : TEXCOORD0; +vec4 a_color0 : COLOR0; |