diff options
| author | raysan5 <[email protected]> | 2016-03-01 19:00:12 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2016-03-01 19:00:12 +0100 |
| commit | 1674465bdc17f522013c5552bd154f04254d8e74 (patch) | |
| tree | 0557f4ee9a88a307b88bb2aeace458d79470ee70 /src/raylib.h | |
| parent | 8ca6f8c6ec0630c27ce5df646ca12859b74ad980 (diff) | |
| download | raylib-1674465bdc17f522013c5552bd154f04254d8e74.tar.gz raylib-1674465bdc17f522013c5552bd154f04254d8e74.zip | |
Adjust buffers usage
- Removed DrawQuad() function
- DrawBillboard() uses DrawBillboardRec()
- DrawPlane() uses RL_TRIANGLES
- DrawRectangleV() uses RL_TRIANGLES, that way, [shapes] module uses
only TRIANGLES buffers.
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index c598ec30..36ca216d 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -740,7 +740,6 @@ void DrawSphereWires(Vector3 centerPos, float radius, int rings, int slices, Col void DrawCylinder(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); // Draw a cylinder/cone void DrawCylinderWires(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); // Draw a cylinder/cone wires void DrawPlane(Vector3 centerPos, Vector2 size, Color color); // Draw a plane XZ -void DrawQuad(Vector3 v1, Vector3 v2, Vector3 v3, Vector3 v4, Color color); // Draw a quad void DrawRay(Ray ray, Color color); // Draw a ray line void DrawGrid(int slices, float spacing); // Draw a grid (centered at (0, 0, 0)) void DrawGizmo(Vector3 position); // Draw simple gizmo |
