blob: 1a0405a264c3ed672a1341aba53f7b4c5edcbac5 [file] [log] [blame]
/*
Copyright (c) 2019 The Khronos Group Inc.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE.txt file.
*/
#version 100
#ifdef GL_ES
precision mediump float;
#endif
/* #version can only be followed by number 100. The only statements before
#version can be comment or white spaces */
void main()
{
gl_FragColor = vec4(1);
}