mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
107 lines
2.7 KiB
Text
107 lines
2.7 KiB
Text
|
struct v2f_vertex_lit {
|
||
|
vec2 uv;
|
||
|
vec4 diff;
|
||
|
vec4 spec;
|
||
|
};
|
||
|
struct v2f_img {
|
||
|
vec4 pos;
|
||
|
vec2 uv;
|
||
|
};
|
||
|
struct appdata_img {
|
||
|
vec4 vertex;
|
||
|
vec2 texcoord;
|
||
|
};
|
||
|
struct SurfaceOutput {
|
||
|
vec3 Albedo;
|
||
|
vec3 Normal;
|
||
|
vec3 Emission;
|
||
|
float Specular;
|
||
|
float Gloss;
|
||
|
float Alpha;
|
||
|
};
|
||
|
struct Input {
|
||
|
vec2 uv_Control;
|
||
|
vec2 uv_Splat0;
|
||
|
vec2 uv_Splat1;
|
||
|
vec2 uv_Splat2;
|
||
|
vec2 uv_Splat3;
|
||
|
};
|
||
|
struct v2f_surf {
|
||
|
vec4 pos;
|
||
|
float fog;
|
||
|
vec4 hip_pack0;
|
||
|
vec4 hip_pack1;
|
||
|
vec2 hip_pack2;
|
||
|
vec4 hip_screen;
|
||
|
};
|
||
|
struct appdata_full {
|
||
|
vec4 vertex;
|
||
|
vec4 tangent;
|
||
|
vec3 normal;
|
||
|
vec4 texcoord;
|
||
|
vec4 texcoord1;
|
||
|
vec4 color;
|
||
|
};
|
||
|
uniform sampler2D _Control;
|
||
|
uniform sampler2D _LightBuffer;
|
||
|
uniform sampler2D _Splat0;
|
||
|
uniform sampler2D _Splat1;
|
||
|
uniform sampler2D _Splat2;
|
||
|
uniform sampler2D _Splat3;
|
||
|
uniform vec4 unity_Ambient;
|
||
|
void surf( in Input IN, inout SurfaceOutput o );
|
||
|
vec4 LightingLambert_PrePass( in SurfaceOutput s, in vec4 light );
|
||
|
vec4 frag_surf( in v2f_surf IN );
|
||
|
void surf( in Input IN, inout SurfaceOutput o ) {
|
||
|
vec4 splat_control;
|
||
|
vec3 col;
|
||
|
splat_control = texture2D( _Control, IN.uv_Control);
|
||
|
col = (splat_control.x * texture2D( _Splat0, IN.uv_Splat0).xyz );
|
||
|
col += (splat_control.y * texture2D( _Splat1, IN.uv_Splat1).xyz );
|
||
|
col += (splat_control.z * texture2D( _Splat2, IN.uv_Splat2).xyz );
|
||
|
col += (splat_control.w * texture2D( _Splat3, IN.uv_Splat3).xyz );
|
||
|
o.Albedo = col;
|
||
|
o.Alpha = 0.000000;
|
||
|
}
|
||
|
vec4 LightingLambert_PrePass( in SurfaceOutput s, in vec4 light ) {
|
||
|
vec4 c;
|
||
|
c.xyz = (s.Albedo * light.xyz );
|
||
|
c.w = s.Alpha;
|
||
|
return c;
|
||
|
}
|
||
|
vec4 frag_surf( in v2f_surf IN ) {
|
||
|
Input surfIN;
|
||
|
SurfaceOutput o;
|
||
|
vec4 light;
|
||
|
vec4 col;
|
||
|
surfIN.uv_Control = IN.hip_pack0.xy ;
|
||
|
surfIN.uv_Splat0 = IN.hip_pack0.zw ;
|
||
|
surfIN.uv_Splat1 = IN.hip_pack1.xy ;
|
||
|
surfIN.uv_Splat2 = IN.hip_pack1.zw ;
|
||
|
surfIN.uv_Splat3 = IN.hip_pack2.xy ;
|
||
|
o.Albedo = vec3( 0.000000);
|
||
|
o.Emission = vec3( 0.000000);
|
||
|
o.Specular = 0.000000;
|
||
|
o.Alpha = 0.000000;
|
||
|
o.Gloss = 0.000000;
|
||
|
surf( surfIN, o);
|
||
|
light = texture2DProj( _LightBuffer, IN.hip_screen);
|
||
|
light = ( -log2( light ) );
|
||
|
light.xyz += unity_Ambient.xyz ;
|
||
|
col = LightingLambert_PrePass( o, light);
|
||
|
return col;
|
||
|
}
|
||
|
varying vec4 xlv_FOG;
|
||
|
void main() {
|
||
|
vec4 xl_retval;
|
||
|
v2f_surf xlt_IN;
|
||
|
xlt_IN.pos = vec4(0.0);
|
||
|
xlt_IN.fog = float( xlv_FOG);
|
||
|
xlt_IN.hip_pack0 = vec4( gl_TexCoord[0]);
|
||
|
xlt_IN.hip_pack1 = vec4( gl_TexCoord[1]);
|
||
|
xlt_IN.hip_pack2 = vec2( gl_TexCoord[2]);
|
||
|
xlt_IN.hip_screen = vec4( gl_TexCoord[3]);
|
||
|
xl_retval = frag_surf( xlt_IN);
|
||
|
gl_FragData[0] = vec4( xl_retval);
|
||
|
}
|