mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
Fix the texture init function name
This commit is contained in:
parent
0850289d8c
commit
994ea9556f
2 changed files with 6 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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__ */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue