diff options
author | Rhys Perry <[email protected]> | 2019-01-16 23:18:25 +0000 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-04-15 16:18:07 -0400 |
commit | 5131b7a43f8488a797ec880ac2c905614da0aa03 (patch) | |
tree | cedc9ab6703a67081434086e14cf07474634fdec /src/gallium/auxiliary | |
parent | bf4a0485d9afd12098cc7e21aa12988f2fcb9480 (diff) |
gallium: add support for formatted image loads
v3: rebase
v3: make use of u_pipe_screen_get_param_defaults
Signed-off-by: Rhys Perry <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
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 a449db856f6..f864a7a320b 100644 --- a/src/gallium/auxiliary/util/u_screen.c +++ b/src/gallium/auxiliary/util/u_screen.c @@ -323,6 +323,7 @@ u_pipe_screen_get_param_defaults(struct pipe_screen *pscreen, case PIPE_CAP_MAX_COMBINED_HW_ATOMIC_COUNTER_BUFFERS: case PIPE_CAP_TGSI_ATOMFADD: case PIPE_CAP_TGSI_SKIP_SHRINK_IO_ARRAYS: + case PIPE_CAP_IMAGE_LOAD_FORMATTED: return 0; case PIPE_CAP_MAX_GS_INVOCATIONS: |