aboutsummaryrefslogtreecommitdiffstats
path: root/dev/a5-artrender/shaders/gouraud.frag
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2021-11-24 09:18:24 -0600
committerMatt Strapp <matt@mattstrapp.net>2021-11-24 09:18:24 -0600
commit843308f07547b969c97efc23848f4e81b50a5b24 (patch)
treeb709343d4b06880dbd0b06776bc2aa8a57fd9602 /dev/a5-artrender/shaders/gouraud.frag
parentMerge branch 'support-code' of https://github.umn.edu/umn-csci-4611-f21/share... (diff)
downloadcsci4611-843308f07547b969c97efc23848f4e81b50a5b24.tar
csci4611-843308f07547b969c97efc23848f4e81b50a5b24.tar.gz
csci4611-843308f07547b969c97efc23848f4e81b50a5b24.tar.bz2
csci4611-843308f07547b969c97efc23848f4e81b50a5b24.tar.lz
csci4611-843308f07547b969c97efc23848f4e81b50a5b24.tar.xz
csci4611-843308f07547b969c97efc23848f4e81b50a5b24.tar.zst
csci4611-843308f07547b969c97efc23848f4e81b50a5b24.zip
Do a5
Diffstat (limited to 'dev/a5-artrender/shaders/gouraud.frag')
-rw-r--r--dev/a5-artrender/shaders/gouraud.frag2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/a5-artrender/shaders/gouraud.frag b/dev/a5-artrender/shaders/gouraud.frag
index 73d43c7..057d4b3 100644
--- a/dev/a5-artrender/shaders/gouraud.frag
+++ b/dev/a5-artrender/shaders/gouraud.frag
@@ -14,5 +14,5 @@ out vec4 final_color;
void main() {
// For a Gouraud shader, there is nothing more to compute at this stage. We
// just output the input color.
- final_color = vec4(0,0,0,1);
+ final_color = color;
}