Fix the texture init function name

This commit is contained in:
Stephane Marchesin 2006-11-11 12:01:48 +00:00
parent 0850289d8c
commit 994ea9556f
2 changed files with 6 additions and 1 deletions

View file

@ -28,7 +28,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "nouveau_tex.h"
// XXX needs some love
void nouveauInitTextureFuncs( struct dd_function_table *functions )
void nouveauTexInitFunctions( struct dd_function_table *functions )
{
/*
functions->TexEnv = nouveauTexEnv;

View file

@ -28,6 +28,11 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef __NOUVEAU_TEX_H__
#define __NOUVEAU_TEX_H__
#include <errno.h>
#include "mtypes.h"
#include "macros.h"
#include "dd.h"
extern void nouveauTexInitFunctions( struct dd_function_table *functions );
#endif /* __NOUVEAU_TEX_H__ */