mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 06:10:12 +01:00
zink: don't use defunct custom-flag
We're no longer respecting this flag, so there's no need in setting it.
Fixes: 00dc0036bb ("zink: flatten out buffer creation usage flags codepath")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20183>
This commit is contained in:
parent
91ed8fb13a
commit
2ccf481c17
1 changed files with 1 additions and 5 deletions
|
|
@ -3958,11 +3958,7 @@ zink_create_stream_output_target(struct pipe_context *pctx,
|
|||
if (!t)
|
||||
return NULL;
|
||||
|
||||
/* using PIPE_BIND_CUSTOM here lets us create a custom pipe buffer resource,
|
||||
* which allows us to differentiate and use VK_BUFFER_USAGE_TRANSFORM_FEEDBACK_COUNTER_BUFFER_BIT_EXT
|
||||
* as we must for this case
|
||||
*/
|
||||
t->counter_buffer = pipe_buffer_create(pctx->screen, PIPE_BIND_STREAM_OUTPUT | PIPE_BIND_CUSTOM, PIPE_USAGE_DEFAULT, 4);
|
||||
t->counter_buffer = pipe_buffer_create(pctx->screen, PIPE_BIND_STREAM_OUTPUT, PIPE_USAGE_DEFAULT, 4);
|
||||
if (!t->counter_buffer) {
|
||||
FREE(t);
|
||||
return NULL;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue