diff options
author | pryazha <pryadeiniv@mail.ru> | 2025-08-02 13:21:42 +0500 |
---|---|---|
committer | pryazha <pryadeiniv@mail.ru> | 2025-08-02 13:21:42 +0500 |
commit | 2e64d3c5d6eb1eb04168d39d5eb5f2d89af1a8b0 (patch) | |
tree | 85c8a586a1343469cdcdab5dccad023053571ecd /pbr/1.1.lighting/default.frag | |
parent | 33d5f67044d104d69cb2d11e78e6a79bc20d4c4e (diff) |
Diffstat (limited to 'pbr/1.1.lighting/default.frag')
-rw-r--r-- | pbr/1.1.lighting/default.frag | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/pbr/1.1.lighting/default.frag b/pbr/1.1.lighting/default.frag deleted file mode 100644 index 9351a1b..0000000 --- a/pbr/1.1.lighting/default.frag +++ /dev/null @@ -1,15 +0,0 @@ -#version 330 core - -in vert_t { - vec2 tex_coords; -} vert; - -out vec4 frag_color; - -uniform sampler2D colorbuffer; - -void main(void) -{ - vec3 color = vec3(texture(colorbuffer, vert.tex_coords)); - frag_color = vec4(color, 1.0); -} |