expected.frag (266B)
1 /* 2 Copyright (c) 2019 The Khronos Group Inc. 3 Use of this source code is governed by an MIT-style license that can be 4 found in the LICENSE.txt file. 5 */ 6 7 8 #ifdef GL_ES 9 precision mediump float; 10 #endif 11 uniform vec4 result; 12 13 void main (void) 14 { 15 gl_FragColor = result; 16 }