Removed camera downsampling functionality no longer in use. A more advanced postfx and compositor will be implemented instead.

This commit is contained in:
2022-09-27 18:32:35 -07:00
parent 4d244c96c3
commit e60e9bceab
2 changed files with 1 additions and 8 deletions

View File

@@ -29,8 +29,6 @@
// or implied, of Kearwood Gilbert.
//
uniform vec2 viewport_downsample;
in vec4 vertex_position;
in vec4 vertex_uv;
@@ -39,5 +37,5 @@ out vec2 textureCoordinate;
void main()
{
gl_Position = vertex_position;
textureCoordinate = vertex_uv.xy * viewport_downsample.xy;
textureCoordinate = vertex_uv.xy;
}