diff options
Diffstat (limited to '3rdparty/bgfx/examples/33-pom/varying.def.sc')
-rw-r--r-- | 3rdparty/bgfx/examples/33-pom/varying.def.sc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3rdparty/bgfx/examples/33-pom/varying.def.sc b/3rdparty/bgfx/examples/33-pom/varying.def.sc new file mode 100644 index 00000000000..2b42f9cc888 --- /dev/null +++ b/3rdparty/bgfx/examples/33-pom/varying.def.sc @@ -0,0 +1,13 @@ +vec2 v_texcoord0 : TEXCOORD0 = vec2(0.0, 0.0); +vec3 v_ts_light_pos : TEXCOORD1 = vec3(0.0, 0.0, 0.0); +vec3 v_ts_view_pos : TEXCOORD2 = vec3(0.0, 0.0, 0.0); +vec3 v_ts_frag_pos : TEXCOORD3 = vec3(0.0, 0.0, 0.0); + +vec3 a_position : POSITION; +vec3 a_tangent : TANGENT; +vec3 a_bitangent : BITANGENT; +vec2 a_texcoord0 : TEXCOORD0; +vec4 i_data0 : TEXCOORD7; +vec4 i_data1 : TEXCOORD6; +vec4 i_data2 : TEXCOORD5; +vec4 i_data3 : TEXCOORD4; |