14 lines
383 B
GLSL
14 lines
383 B
GLSL
//-----------------------------------------------------------------------------
|
|
// SolveSpace Indexed Mesh rendering shader
|
|
//
|
|
// Copyright 2016 Aleksey Egorov
|
|
//-----------------------------------------------------------------------------
|
|
uniform vec4 color;
|
|
uniform sampler2D texture;
|
|
|
|
varying vec2 fragTex;
|
|
|
|
void main() {
|
|
gl_FragColor = texture2D(texture, fragTex) * color;
|
|
}
|