summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/common/debugdraw/debugdraw.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/examples/common/debugdraw/debugdraw.h')
-rw-r--r--3rdparty/bgfx/examples/common/debugdraw/debugdraw.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/3rdparty/bgfx/examples/common/debugdraw/debugdraw.h b/3rdparty/bgfx/examples/common/debugdraw/debugdraw.h
index 222c05fd64d..a52da4fbd85 100644
--- a/3rdparty/bgfx/examples/common/debugdraw/debugdraw.h
+++ b/3rdparty/bgfx/examples/common/debugdraw/debugdraw.h
@@ -92,7 +92,10 @@ void ddClose();
void ddDraw(const Aabb& _aabb);
///
-void ddDraw(const Cylinder& _cylinder, bool _capsule = false);
+void ddDraw(const Cylinder& _cylinder);
+
+///
+void ddDraw(const Capsule& _capsule);
///
void ddDraw(const Disk& _disk);
@@ -104,6 +107,9 @@ void ddDraw(const Obb& _obb);
void ddDraw(const Sphere& _sphere);
///
+void ddDraw(const Cone& _cone);
+
+///
void ddDrawFrustum(const void* _viewProj);
///
@@ -128,7 +134,7 @@ void ddDrawQuad(bgfx::TextureHandle _handle, const float* _normal, const float*
void ddDrawCone(const void* _from, const void* _to, float _radius);
///
-void ddDrawCylinder(const void* _from, const void* _to, float _radius, bool _capsule = false);
+void ddDrawCylinder(const void* _from, const void* _to, float _radius);
///
void ddDrawCapsule(const void* _from, const void* _to, float _radius);