mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
13 lines
307 B
Text
13 lines
307 B
Text
#version 300 es
|
|
void xlat_main( out lowp vec4 ocol, out mediump float oz ) {
|
|
ocol = vec4( 0.5);
|
|
oz = 0.9;
|
|
}
|
|
out lowp vec4 _fragData;
|
|
void main() {
|
|
lowp vec4 xlt_ocol;
|
|
mediump float xlt_oz;
|
|
xlat_main( xlt_ocol, xlt_oz);
|
|
_fragData = vec4(xlt_ocol);
|
|
gl_FragDepth = float(xlt_oz);
|
|
}
|