diff options
author | Keith Whitwell <[email protected]> | 2000-11-05 18:24:40 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2000-11-05 18:24:40 +0000 |
commit | cd03ed4f54444d96e4e47cdb118a3dfd94d92bb0 (patch) | |
tree | 57d9620635286b4ee4b8adf950014113d5961017 /src/mesa/swrast/s_lines.h | |
parent | 7c20642b1091df1aab7d9076a3fe2fb11c6f011c (diff) |
Reorganized software rasterizer as a module which manages its own state,
with tighter interfaces with the rest of the world.
Proper documentation to come.
Diffstat (limited to 'src/mesa/swrast/s_lines.h')
-rw-r--r-- | src/mesa/swrast/s_lines.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/swrast/s_lines.h b/src/mesa/swrast/s_lines.h new file mode 100644 index 00000000000..efbb59d2d63 --- /dev/null +++ b/src/mesa/swrast/s_lines.h @@ -0,0 +1,10 @@ +#ifndef S_LINES_H +#define S_LINES_H + +#include "types.h" + +void +_swrast_choose_line( GLcontext *ctx ); + + +#endif |