diff options
author | Corbin Simpson <[email protected]> | 2009-11-08 14:51:52 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-11-08 14:53:29 -0800 |
commit | c9167d868cfb2ba821f01e0217e3880c5df4c97b (patch) | |
tree | 0671742a3b5439d92ccf71115ce26075fd70d7d9 /src/gallium/drivers/r300/r300_render.h | |
parent | fe898638086370ed86a9ce76b21fa8ebb88c4b08 (diff) |
r300g: Fix up SW TCL rendering functions.
They don't work, but at least they're clean now.
Diffstat (limited to 'src/gallium/drivers/r300/r300_render.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_render.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_render.h b/src/gallium/drivers/r300/r300_render.h index 3f8ac1fb7a4..da83069083d 100644 --- a/src/gallium/drivers/r300/r300_render.h +++ b/src/gallium/drivers/r300/r300_render.h @@ -42,6 +42,11 @@ boolean r300_draw_elements(struct pipe_context* pipe, boolean r300_draw_arrays(struct pipe_context* pipe, unsigned mode, unsigned start, unsigned count); +boolean r300_swtcl_draw_arrays(struct pipe_context* pipe, + unsigned mode, + unsigned start, + unsigned count); + boolean r300_swtcl_draw_range_elements(struct pipe_context* pipe, struct pipe_buffer* indexBuffer, unsigned indexSize, |