diff options
author | Christoph Bumiller <[email protected]> | 2012-04-24 13:35:44 +0200 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2012-04-24 13:35:44 +0200 |
commit | a48e5dee94460fb9b70a193069daca5f5b3e575b (patch) | |
tree | 0743084c50e80730d4ee3779de76bfd14621034c /src/gallium/drivers/nv50/nv50_context.h | |
parent | 2170fed8f4c01e719b8fc9d6ff42f3214dadc267 (diff) |
nv50,nvc0: don't initialize the draw module, we don't use it
But some day we might (e.g. for blending 16 bpp formats on nv50).
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_context.h')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.h b/src/gallium/drivers/nv50/nv50_context.h index 65304a8f1ff..1cee0e06c02 100644 --- a/src/gallium/drivers/nv50/nv50_context.h +++ b/src/gallium/drivers/nv50/nv50_context.h @@ -10,7 +10,9 @@ #include "util/u_inlines.h" #include "util/u_dynarray.h" +#ifdef NV50_WITH_DRAW_MODULE #include "draw/draw_vertex.h" +#endif #include "nv50_debug.h" #include "nv50_winsys.h" @@ -136,7 +138,9 @@ struct nv50_context { boolean vbo_push_hint; +#ifdef NV50_WITH_DRAW_MODULE struct draw_context *draw; +#endif }; static INLINE struct nv50_context * |