mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
gallium: add partial bit to the query flags.
This is to match the vulkan partial bit so lavapipe can work with new llvmpipe changes. Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Reviewed-by: Roland Scheidegger <sroland@vmware.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14923>
This commit is contained in:
parent
d807226d37
commit
2b658dea03
1 changed files with 1 additions and 0 deletions
|
|
@ -1289,6 +1289,7 @@ enum pipe_query_value_type
|
|||
enum pipe_query_flags
|
||||
{
|
||||
PIPE_QUERY_WAIT = (1 << 0),
|
||||
PIPE_QUERY_PARTIAL = (1 << 1),
|
||||
};
|
||||
|
||||
union pipe_color_union
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue