Make it easier to disable tracing

TRAC #11979

Signed-off-by: Shannon Woods
Signed-off-by: Daniel Koch

Author:    Andrew Lewycky

git-svn-id: https://angleproject.googlecode.com/svn/trunk@178 736b8ea6-26fd-11df-bfd4-992fa37f6226
This commit is contained in:
daniel@transgaming.com 2010-04-22 13:35:23 +00:00
Родитель b4ff1f8f6f
Коммит e7e43fb992
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -11,11 +11,13 @@
#include <stdio.h>
#include <stdarg.h>
static bool trace_on = true;
namespace gl
{
void trace(const char *format, ...)
{
if (true)
if (trace_on)
{
if (format)
{