summaryrefslogtreecommitdiff
path: root/common/debug.h
blob: 88554c9800dbd53353f54917e7defa5f1f1d22d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _DEBUG_H_
#define _DEBUG_H_
#ifdef LC_DEBUG

#include "algebra.h"

void RenderDebugPrimitives();

void AddDebugLine(const Point3& pt1, const Point3& pt2, const Vector3& Color);
void ClearDebugLines();

void AddDebugQuad(const Point3& pt1, const Point3& pt2, const Point3& pt3, const Point3& pt4, const Vector4& Color);
void ClearDebugQuads();


#endif // LC_DEBUG
#endif // _DEBUG_H_