diff options
author | Ben Skeggs <[email protected]> | 2008-02-16 17:23:12 +1100 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2008-02-16 17:23:12 +1100 |
commit | 26add9288c88108e3485ffc57c51ea9bdc0ee719 (patch) | |
tree | 925c82d660e68ec0022c67a0b970b41cc98e6b52 /src/gallium/drivers/nv50/nv50_vbo.c | |
parent | 87e3301533aa4d3e6e98db139887ebba3d217f7d (diff) |
nouveau: match gallium code reorginisation.
That was... fun..
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_vbo.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_vbo.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_vbo.c b/src/gallium/drivers/nv50/nv50_vbo.c new file mode 100644 index 00000000000..6c0dc23a439 --- /dev/null +++ b/src/gallium/drivers/nv50/nv50_vbo.c @@ -0,0 +1,24 @@ +#include "pipe/p_context.h" +#include "pipe/p_state.h" +#include "pipe/p_util.h" + +#include "nv50_context.h" +#include "nv50_state.h" + +boolean +nv50_draw_arrays(struct pipe_context *pipe, unsigned mode, unsigned start, + unsigned count) +{ + NOUVEAU_ERR("unimplemented\n"); + return TRUE; +} + +boolean +nv50_draw_elements(struct pipe_context *pipe, + struct pipe_buffer *indexBuffer, unsigned indexSize, + unsigned mode, unsigned start, unsigned count) +{ + NOUVEAU_ERR("unimplemented\n"); + return TRUE; +} + |