diff options
author | Axel Davy <[email protected]> | 2015-01-02 14:22:17 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-01-22 22:16:24 +0000 |
commit | b9cbea9dbc75630061236c9858cbc0e2b5b18974 (patch) | |
tree | b7bd80d7e2e7dce403c780f328d902eb2b727f7e /src/gallium/state_trackers/nine/device9.c | |
parent | a721987077ae22e0c373ea118113361aada2024e (diff) |
st/nine: Add variables containing the size of the constant buffers
Reviewed-by: Tiziano Bacocco <[email protected]>
Signed-off-by: Axel Davy <[email protected]>
Cc: "10.4" <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine/device9.c')
-rw-r--r-- | src/gallium/state_trackers/nine/device9.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gallium/state_trackers/nine/device9.c b/src/gallium/state_trackers/nine/device9.c index 4d6ae60e3f8..2d5a7f6a810 100644 --- a/src/gallium/state_trackers/nine/device9.c +++ b/src/gallium/state_trackers/nine/device9.c @@ -109,7 +109,7 @@ NineDevice9_RestoreNonCSOState( struct NineDevice9 *This, unsigned mask ) cb.buffer = This->constbuf_vs; cb.user_buffer = NULL; } - cb.buffer_size = This->constbuf_vs->width0; + cb.buffer_size = This->vs_const_size; pipe->set_constant_buffer(pipe, PIPE_SHADER_VERTEX, 0, &cb); if (This->prefer_user_constbuf) { @@ -117,7 +117,7 @@ NineDevice9_RestoreNonCSOState( struct NineDevice9 *This, unsigned mask ) } else { cb.buffer = This->constbuf_ps; } - cb.buffer_size = This->constbuf_ps->width0; + cb.buffer_size = This->ps_const_size; pipe->set_constant_buffer(pipe, PIPE_SHADER_FRAGMENT, 0, &cb); } @@ -262,6 +262,8 @@ NineDevice9_ctor( struct NineDevice9 *This, This->max_ps_const_f = max_const_ps - (NINE_MAX_CONST_I + NINE_MAX_CONST_B / 4); + This->vs_const_size = max_const_vs * sizeof(float[4]); + This->ps_const_size = max_const_ps * sizeof(float[4]); /* Include space for I,B constants for user constbuf. */ This->state.vs_const_f = CALLOC(NINE_MAX_CONST_ALL, sizeof(float[4])); This->state.ps_const_f = CALLOC(NINE_MAX_CONST_ALL, sizeof(float[4])); @@ -283,10 +285,10 @@ NineDevice9_ctor( struct NineDevice9 *This, tmpl.bind = PIPE_BIND_CONSTANT_BUFFER; tmpl.flags = 0; - tmpl.width0 = max_const_vs * sizeof(float[4]); + tmpl.width0 = This->vs_const_size; This->constbuf_vs = pScreen->resource_create(pScreen, &tmpl); - tmpl.width0 = max_const_ps * sizeof(float[4]); + tmpl.width0 = This->ps_const_size; This->constbuf_ps = pScreen->resource_create(pScreen, &tmpl); if (!This->constbuf_vs || !This->constbuf_ps) |