summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2018-05-27 17:37:22 +0200
committerTimm Bäder <mail@baedert.org>2018-05-27 17:51:51 +0200
commit719b2b0525aadc607f5b250b5b81e08480662bcb (patch)
tree03f6a880d201bea1bc374f22c6b325895fbe972e
parentf9875040c605755ad5df99266fc1d239c47e8761 (diff)
downloadgtk+-719b2b0525aadc607f5b250b5b81e08480662bcb.tar.gz
gl renderer: Remove an outdated comment
-rw-r--r--gsk/gl/gskglrenderer.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gsk/gl/gskglrenderer.c b/gsk/gl/gskglrenderer.c
index a0e962524d..3f14304b94 100644
--- a/gsk/gl/gskglrenderer.c
+++ b/gsk/gl/gskglrenderer.c
@@ -1602,8 +1602,6 @@ apply_color_op (const Program *program,
const RenderOp *op)
{
OP_PRINT (" -> Color: (%f, %f, %f, %f)", op->color.red, op->color.green, op->color.blue, op->color.alpha);
- /* TODO: We use color.color_location here and this is right for all three of the programs above,
- * but that's just a coincidence. */
glUniform4f (program->color.color_location,
op->color.red, op->color.green, op->color.blue, op->color.alpha);
}