diff options
author | Marek Olšák <[email protected]> | 2020-03-05 21:49:30 -0500 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-27 11:56:06 +0000 |
commit | 19eb89b0f3da8c888177da8e1a59c10ea0abfb34 (patch) | |
tree | 17df6dd41ecf4d5ce855f83d440302d8c734c2ff /src/gallium/auxiliary | |
parent | 62154658426264c3f4dc5666ea04fc3fdd3d340a (diff) |
gallium: add PIPE_CAP_MAP_UNSYNCHRONIZED_THREAD_SAFE for glthread
and add radeonsi support.
Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4758>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_screen.c b/src/gallium/auxiliary/util/u_screen.c index b3484beef25..54ebe77420d 100644 --- a/src/gallium/auxiliary/util/u_screen.c +++ b/src/gallium/auxiliary/util/u_screen.c @@ -422,6 +422,7 @@ u_pipe_screen_get_param_defaults(struct pipe_screen *pscreen, case PIPE_CAP_VIEWPORT_TRANSFORM_LOWERED: case PIPE_CAP_PSIZ_CLAMPED: + case PIPE_CAP_MAP_UNSYNCHRONIZED_THREAD_SAFE: return 0; case PIPE_CAP_GL_BEGIN_END_BUFFER_SIZE: |