mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
23 lines
438 B
Text
23 lines
438 B
Text
#version 300 es
|
|
out lowp vec4 _fragData;
|
|
|
|
uniform mat4x3 nonSqMat; // non square matrices
|
|
|
|
|
|
void main()
|
|
{
|
|
const float cosPI = cos(3.1415); // built-in calls in constant initializers
|
|
|
|
mediump vec4 v;
|
|
v.x = 1.2f; // accepts 'f' suffix
|
|
v.y = 5.0f;
|
|
v.z = 0.0;
|
|
v.w = cosPI;
|
|
v.x += nonSqMat[0][0];
|
|
|
|
float arr[4] = float[](1,2,3,4); // array initializer
|
|
v.y += arr[0];
|
|
v.z += float(arr.length()); // array length
|
|
|
|
_fragData = v;
|
|
}
|