Mesa (master): nv50: call util_format_init

Luca Barbieri lb at kemper.freedesktop.org
Fri Apr 2 00:40:20 UTC 2010


Module: Mesa
Branch: master
Commit: cbf4097b8dd097daf6d91cd0cf2c5b08151793bc
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cbf4097b8dd097daf6d91cd0cf2c5b08151793bc

Author: Luca Barbieri <luca at luca-barbieri.com>
Date:   Fri Apr  2 02:36:59 2010 +0200

nv50: call util_format_init

Needed to fetch static vertex attributes.

---

 src/gallium/drivers/nv50/nv50_context.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/gallium/drivers/nv50/nv50_context.c b/src/gallium/drivers/nv50/nv50_context.c
index aa14e17..0de75a7 100644
--- a/src/gallium/drivers/nv50/nv50_context.c
+++ b/src/gallium/drivers/nv50/nv50_context.c
@@ -22,6 +22,7 @@
 
 #include "draw/draw_context.h"
 #include "pipe/p_defines.h"
+#include "util/u_format.h"
 
 #include "nv50_context.h"
 #include "nv50_screen.h"
@@ -70,6 +71,8 @@ nv50_create(struct pipe_screen *pscreen, void *priv)
 	struct nv50_screen *screen = nv50_screen(pscreen);
 	struct nv50_context *nv50;
 
+	util_format_init();
+
 	nv50 = CALLOC_STRUCT(nv50_context);
 	if (!nv50)
 		return NULL;




More information about the mesa-commit mailing list