initial
This commit is contained in:
commit
ded8dbba8c
199 changed files with 367950 additions and 0 deletions
12
assets/shaders/base.frag
Normal file
12
assets/shaders/base.frag
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#version 120
|
||||
|
||||
varying vec2 texcoord;
|
||||
varying vec4 color;
|
||||
varying vec2 pixel_position;
|
||||
|
||||
uniform sampler2D texture0;
|
||||
uniform vec4 colDiffuse;
|
||||
|
||||
void main() {
|
||||
gl_FragColor = texture2D(texture0, texcoord) * colDiffuse;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue