Update REMDER (Dx9)
This commit is contained in:
16
FLARDATA/Shader/postProcess.vs
Normal file
16
FLARDATA/Shader/postProcess.vs
Normal file
@@ -0,0 +1,16 @@
|
||||
//This shader file is part of FLAR - Advanced Renderer for Freelancer by Schmackbolzen
|
||||
//If you use the supplied shader files you may not modify them unless you state in them what you changed
|
||||
//and also mention the source or who the author is.
|
||||
//Post processing shader for FLAR by Schmackbolzen
|
||||
|
||||
#version 330
|
||||
layout (location = 0) in vec4 vertex;
|
||||
|
||||
out vec2 TexCoords;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position = vec4(vertex.xy, 1.0f, 1.0f);
|
||||
vec2 texture = vertex.zw;
|
||||
TexCoords = texture;
|
||||
}
|
||||
Reference in New Issue
Block a user