source: framspy/gui/visual/shaders/SkyboxFragmentShader.glsl @ 1198

Last change on this file since 1198 was 1198, checked in by Maciej Komosinski, 15 months ago

Added simple Python GUI for Framsticks library/server

File size: 246 bytes
Line 
1#version 330
2
3in vec3 textureCoords;
4out vec4 out_Color;
5
6uniform samplerCube modelTexture;
7
8void main(void){
9        vec4 textureColor = texture(modelTexture, textureCoords);
10
11    out_Color = textureColor;
12        //out_Color = vec4(1, 0, 0, 1);
13}
Note: See TracBrowser for help on using the repository browser.