mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
14 lines
424 B
Text
14 lines
424 B
Text
uniform mat4 _RotationMatrix;
|
|
uniform sampler2D _MainTex;
|
|
uniform vec4 _CenterRadius;
|
|
void main ()
|
|
{
|
|
vec2 tmpvar_1;
|
|
tmpvar_1 = gl_TexCoord[0].xy;
|
|
vec4 tmpvar_2;
|
|
tmpvar_2.zw = vec2(0.0, 0.0);
|
|
tmpvar_2.x = tmpvar_1.x;
|
|
tmpvar_2.y = tmpvar_1.y;
|
|
gl_FragData[0] = texture2D (_MainTex, (mix ((_RotationMatrix * tmpvar_2).xy, tmpvar_1, vec2(min (1.0, length ((tmpvar_1 / _CenterRadius.zw))))) + _CenterRadius.xy));
|
|
}
|
|
|