summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2022-06-27 13:27:16 +0200
committerRay <[email protected]>2022-06-27 13:27:16 +0200
commit61e691d94fee0d2700ac3e8ed8783cf9c7516ab0 (patch)
tree22db1964c647ccfaea65f62ba8d142c2726cdf16 /src
parente9fcc8a3915c082e92440885ff82713dd0196ad3 (diff)
downloadraylib-61e691d94fee0d2700ac3e8ed8783cf9c7516ab0.tar.gz
raylib-61e691d94fee0d2700ac3e8ed8783cf9c7516ab0.zip
Remove unneeded `rlPushMatrix()`
Diffstat (limited to 'src')
-rw-r--r--src/rshapes.c34
1 files changed, 16 insertions, 18 deletions
diff --git a/src/rshapes.c b/src/rshapes.c
index 79631d62..955f056d 100644
--- a/src/rshapes.c
+++ b/src/rshapes.c
@@ -785,28 +785,26 @@ void DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3,
rlSetTexture(texShapes.id);
- rlPushMatrix();
- rlBegin(RL_QUADS);
- rlNormal3f(0.0f, 0.0f, 1.0f);
+ rlBegin(RL_QUADS);
+ rlNormal3f(0.0f, 0.0f, 1.0f);
- // NOTE: Default raylib font character 95 is a white square
- rlColor4ub(col1.r, col1.g, col1.b, col1.a);
- rlTexCoord2f(texShapesRec.x/texShapes.width, texShapesRec.y/texShapes.height);
- rlVertex2f(rec.x, rec.y);
+ // NOTE: Default raylib font character 95 is a white square
+ rlColor4ub(col1.r, col1.g, col1.b, col1.a);
+ rlTexCoord2f(texShapesRec.x/texShapes.width, texShapesRec.y/texShapes.height);
+ rlVertex2f(rec.x, rec.y);
- rlColor4ub(col2.r, col2.g, col2.b, col2.a);
- rlTexCoord2f(texShapesRec.x/texShapes.width, (texShapesRec.y + texShapesRec.height)/texShapes.height);
- rlVertex2f(rec.x, rec.y + rec.height);
+ rlColor4ub(col2.r, col2.g, col2.b, col2.a);
+ rlTexCoord2f(texShapesRec.x/texShapes.width, (texShapesRec.y + texShapesRec.height)/texShapes.height);
+ rlVertex2f(rec.x, rec.y + rec.height);
- rlColor4ub(col3.r, col3.g, col3.b, col3.a);
- rlTexCoord2f((texShapesRec.x + texShapesRec.width)/texShapes.width, (texShapesRec.y + texShapesRec.height)/texShapes.height);
- rlVertex2f(rec.x + rec.width, rec.y + rec.height);
+ rlColor4ub(col3.r, col3.g, col3.b, col3.a);
+ rlTexCoord2f((texShapesRec.x + texShapesRec.width)/texShapes.width, (texShapesRec.y + texShapesRec.height)/texShapes.height);
+ rlVertex2f(rec.x + rec.width, rec.y + rec.height);
- rlColor4ub(col4.r, col4.g, col4.b, col4.a);
- rlTexCoord2f((texShapesRec.x + texShapesRec.width)/texShapes.width, texShapesRec.y/texShapes.height);
- rlVertex2f(rec.x + rec.width, rec.y);
- rlEnd();
- rlPopMatrix();
+ rlColor4ub(col4.r, col4.g, col4.b, col4.a);
+ rlTexCoord2f((texShapesRec.x + texShapesRec.width)/texShapes.width, texShapesRec.y/texShapes.height);
+ rlVertex2f(rec.x + rec.width, rec.y);
+ rlEnd();
rlSetTexture(0);
}