nvfx: Include missing header in nvfx_vertprog.c.

Include draw_context.h for draw_*_vertex_shader symbols.

Fixes the following GCC warning.
nvfx_vertprog.c: In function 'nvfx_vp_state_create':
nvfx_vertprog.c:1276: warning: implicit declaration of function 'draw_create_vertex_shader'
nvfx_vertprog.c:1276: warning: assignment makes pointer from integer without a cast
nvfx_vertprog.c: In function 'nvfx_vp_state_delete':
nvfx_vertprog.c:1298: warning: implicit declaration of function 'draw_delete_vertex_shader'
This commit is contained in:
Vinson Lee
2010-08-22 12:45:04 -07:00
parent 8e632666af
commit d324fcea67
+2
View File
@@ -9,6 +9,8 @@
#include "tgsi/tgsi_dump.h"
#include "tgsi/tgsi_util.h"
#include "draw/draw_context.h"
#include "nvfx_context.h"
#include "nvfx_state.h"
#include "nvfx_resource.h"