gallium: s/GLuint/unsigned/ to work with gallium when THREADS not defined

This commit is contained in:
Brian 2008-01-26 16:05:35 -07:00
parent 9ef61b9808
commit ffeae75031

View file

@ -259,11 +259,11 @@ typedef benaphore _glthread_Mutex;
* THREADS not defined
*/
typedef GLuint _glthread_TSD;
typedef unsigned _glthread_TSD;
typedef GLuint _glthread_Thread;
typedef unsigned _glthread_Thread;
typedef GLuint _glthread_Mutex;
typedef unsigned _glthread_Mutex;
#define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0