summaryrefslogtreecommitdiffhomepage
path: root/examples/textures
diff options
context:
space:
mode:
authorRay <[email protected]>2022-11-10 10:05:11 +0100
committerRay <[email protected]>2022-11-10 10:05:11 +0100
commit84a2a8857229a696852bb97938e1ec2f7b1df892 (patch)
tree4a79a7e2bdd6ee07d1c4f27e1007ade40bdc8923 /examples/textures
parentfca58c8e2f8768377fe0e535a08b99b6db40a5d6 (diff)
downloadraylib-84a2a8857229a696852bb97938e1ec2f7b1df892.tar.gz
raylib-84a2a8857229a696852bb97938e1ec2f7b1df892.zip
WARNING: REMOVED: `DrawTexturePoly()`
Function moved to `examples/textures/textures_polygon.c`, so users can learn from the implementation and create custom variants as required.
Diffstat (limited to 'examples/textures')
-rw-r--r--examples/textures/textures_polygon.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/textures/textures_polygon.c b/examples/textures/textures_polygon.c
index 357862c3..287029f7 100644
--- a/examples/textures/textures_polygon.c
+++ b/examples/textures/textures_polygon.c
@@ -14,10 +14,15 @@
********************************************************************************************/
#include "raylib.h"
+
+#include "rlgl.h" // Required for: Vertex definition
#include "raymath.h"
#define MAX_POINTS 11 // 10 points and back to the start
+// Draw textured polygon, defined by vertex and texture coordinates
+void DrawTexturePoly(Texture2D texture, Vector2 center, Vector2 *points, Vector2 *texcoords, int pointCount, Color tint);
+
//------------------------------------------------------------------------------------
// Program main entry point
//------------------------------------------------------------------------------------
@@ -102,3 +107,34 @@ int main(void)
return 0;
}
+
+// Draw textured polygon, defined by vertex and texture coordinates
+// NOTE: Polygon center must have straight line path to all points
+// without crossing perimeter, points must be in anticlockwise order
+void DrawTexturePoly(Texture2D texture, Vector2 center, Vector2 *points, Vector2 *texcoords, int pointCount, Color tint)
+{
+ rlSetTexture(texture.id);
+
+ // Texturing is only supported on RL_QUADS
+ rlBegin(RL_QUADS);
+
+ rlColor4ub(tint.r, tint.g, tint.b, tint.a);
+
+ for (int i = 0; i < pointCount - 1; i++)
+ {
+ rlTexCoord2f(0.5f, 0.5f);
+ rlVertex2f(center.x, center.y);
+
+ rlTexCoord2f(texcoords[i].x, texcoords[i].y);
+ rlVertex2f(points[i].x + center.x, points[i].y + center.y);
+
+ rlTexCoord2f(texcoords[i + 1].x, texcoords[i + 1].y);
+ rlVertex2f(points[i + 1].x + center.x, points[i + 1].y + center.y);
+
+ rlTexCoord2f(texcoords[i + 1].x, texcoords[i + 1].y);
+ rlVertex2f(points[i + 1].x + center.x, points[i + 1].y + center.y);
+ }
+ rlEnd();
+
+ rlSetTexture(0);
+}