mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 23:36:00 +02:00
Initial checkin
This commit is contained in:
parent
c74712dad9
commit
078564ac9e
3242 changed files with 1616395 additions and 0 deletions
17
IDE/dist/shaders/Std_es.vert
vendored
Normal file
17
IDE/dist/shaders/Std_es.vert
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
precision mediump float;
|
||||
uniform mat4 screenMatrix;
|
||||
|
||||
attribute vec4 position;
|
||||
attribute vec2 texCoord0;
|
||||
attribute vec4 color;
|
||||
|
||||
precision lowp float;
|
||||
varying lowp vec4 varying_color;
|
||||
varying mediump vec2 varying_texCoord0;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position = screenMatrix * position;
|
||||
varying_color = vec4(color.b * color.a, color.g * color.a, color.r * color.a, color.a);
|
||||
varying_texCoord0 = texCoord0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue