diff options
author | Zack Rusin <[email protected]> | 2007-09-19 14:01:18 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2007-09-19 14:01:18 -0400 |
commit | fe555c39bb7fd530298b5be4a8f06bff41726c86 (patch) | |
tree | 68b9b24eb883c822266f6ef82608de3a817549fc /src/mesa/pipe/cso_cache | |
parent | b6d50abd7d483029469a0faaa28e8e2f2f742c6d (diff) |
Convert the rasterizer cso to the new semantics.
Basically make cso hold the driver specific struct, while
managing the template.
Diffstat (limited to 'src/mesa/pipe/cso_cache')
-rw-r--r-- | src/mesa/pipe/cso_cache/cso_cache.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/pipe/cso_cache/cso_cache.h b/src/mesa/pipe/cso_cache/cso_cache.h index 7ac59089229..cd4b64eec4f 100644 --- a/src/mesa/pipe/cso_cache/cso_cache.h +++ b/src/mesa/pipe/cso_cache/cso_cache.h @@ -53,6 +53,11 @@ struct cso_blend { void *data; }; +struct cso_rasterizer { + struct pipe_rasterizer_state state; + void *data; +}; + enum cso_cache_type { CSO_BLEND, CSO_SAMPLER, |