]> granicus.if.org Git - graphviz/commitdiff
glcomp: remove unnecessary 'GLfloat' casts
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 4 May 2022 15:45:57 +0000 (08:45 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 11 May 2022 00:02:19 +0000 (17:02 -0700)
These values are already `GLfloat`s.

lib/glcomp/glcomppanel.c

index 7ede96f9df891334fbbc2274a9a5c108b8d24c00..234283e84dcdfcdede540e5161df1e36d6e396f0 100644 (file)
@@ -62,8 +62,8 @@ int glCompPanelDraw(glCompObj * o)
     if (!p->common.visible)
        return 0;
     /*draw shadow */
-    glColor4f((GLfloat) p->shadowcolor.R, (GLfloat) p->shadowcolor.G,
-             (GLfloat) p->shadowcolor.B, (GLfloat) p->shadowcolor.A);
+    glColor4f(p->shadowcolor.R, p->shadowcolor.G, p->shadowcolor.B,
+              p->shadowcolor.A);
     r.h = p->shadowwidth;
     r.w = ref.width;
     r.pos.x = ref.pos.x + p->shadowwidth;