diff options
Diffstat (limited to 'shaders/skia/28-20.shader_test')
-rw-r--r-- | shaders/skia/28-20.shader_test | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/shaders/skia/28-20.shader_test b/shaders/skia/28-20.shader_test new file mode 100644 index 0000000..69ab5ee --- /dev/null +++ b/shaders/skia/28-20.shader_test @@ -0,0 +1,46 @@ +[require] +GLSL >= 1.40 + +[fragment shader] +#version 140 + +out vec4 sk_FragColor; +uniform sampler2D uTextureSampler_0_Stage0; +noperspective in vec2 vTextureCoords_Stage0; +flat in int vTexIndex_Stage0; +noperspective in vec4 vinColor_Stage0; +void main() { + vec4 outputCoverage_Stage0; + { + vec4 texColor; + { + texColor = texture(uTextureSampler_0_Stage0, vTextureCoords_Stage0); + } + outputCoverage_Stage0 = texColor; + } + { + sk_FragColor = outputCoverage_Stage0; + } +} + +[vertex shader] +#version 140 + +uniform vec4 sk_RTAdjust; +uniform vec2 uAtlasSizeInv_Stage0; +in vec2 inPosition; +in vec4 inColor; +in uvec2 inTextureCoords; +noperspective out vec2 vTextureCoords_Stage0; +flat out int vTexIndex_Stage0; +noperspective out vec4 vinColor_Stage0; +void main() { + ivec2 signedCoords = ivec2(int(inTextureCoords.x), int(inTextureCoords.y)); + vec2 unormTexCoords = vec2(float(signedCoords.x / 2), float(signedCoords.y / 2)); + vTextureCoords_Stage0 = unormTexCoords * uAtlasSizeInv_Stage0; + vTexIndex_Stage0 = 0; + vinColor_Stage0 = inColor; + gl_Position = vec4(inPosition.x, inPosition.y, 0.0, 1.0); + gl_Position = vec4(gl_Position.xy * sk_RTAdjust.xz + gl_Position.ww * sk_RTAdjust.yw, 0.0, gl_Position.w); +} + |