mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 09:10:11 +01:00
include types.h
This commit is contained in:
parent
643be95416
commit
f142a0830a
1 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: imports.c,v 1.1 2000/09/26 20:53:53 brianp Exp $ */
|
/* $Id: imports.c,v 1.2 2000/09/27 03:30:49 brianp Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Mesa 3-D graphics library
|
* Mesa 3-D graphics library
|
||||||
|
|
@ -42,6 +42,7 @@
|
||||||
#include "glheader.h"
|
#include "glheader.h"
|
||||||
#include "imports.h"
|
#include "imports.h"
|
||||||
#include "mem.h"
|
#include "mem.h"
|
||||||
|
#include "types.h"
|
||||||
|
|
||||||
|
|
||||||
static void *
|
static void *
|
||||||
|
|
@ -75,7 +76,7 @@ _mesa_warning(__GLcontext *gc, char *str)
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
debug = GL_TRUE;
|
debug = GL_TRUE;
|
||||||
#else
|
#else
|
||||||
if (gc->imports.getenv("MESA_DEBUG")) {
|
if (gc->imports.getenv(gc, "MESA_DEBUG")) {
|
||||||
debug = GL_TRUE;
|
debug = GL_TRUE;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue