1
0
mirror of https://github.com/flutter/samples.git synced 2026-03-22 04:17:50 +00:00

simple_shader: Clean up shaders/simple.frag, rebuild runners (#1715)

This commit is contained in:
Brett Morgan
2023-03-31 08:37:23 +10:00
committed by GitHub
parent a828c09e18
commit e3ca775b27
24 changed files with 433 additions and 26 deletions

View File

@@ -4,11 +4,11 @@
precision mediump float;
layout(location = 0) out vec4 fragColor;
layout(location = 0) uniform vec2 resolution;
uniform vec2 resolution;
out vec4 fragColor;
vec3 flutterNavy = vec3(4, 43, 89) / 255;
vec3 flutterBlue = vec3(5, 83, 177) / 255;
vec3 flutterNavy = vec3(4, 43, 89) / 255;
vec3 flutterSky = vec3(2, 125, 253) / 255;
void main() {