diff options
author | Ilia Mirkin <[email protected]> | 2015-02-16 02:27:37 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-02-19 00:25:03 -0500 |
commit | 33edda7d975f2cbf7ba86ba0f300dcadf087fb9b (patch) | |
tree | b8032649cf3297e9e983a6bc98f8dd10599af84c /src/mesa/state_tracker/st_context.c | |
parent | 845b9e4294b7b89a33d77ef6713543f96eba0686 (diff) |
st/mesa: pass etc2 textures to driver if supported
If the driver actually supports ETC2, don't decode it in software.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 9fd6caece73..5834ebad3be 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -230,6 +230,9 @@ st_create_context_priv( struct gl_context *ctx, struct pipe_context *pipe, st->has_etc1 = screen->is_format_supported(screen, PIPE_FORMAT_ETC1_RGB8, PIPE_TEXTURE_2D, 0, PIPE_BIND_SAMPLER_VIEW); + st->has_etc2 = screen->is_format_supported(screen, PIPE_FORMAT_ETC2_RGB8, + PIPE_TEXTURE_2D, 0, + PIPE_BIND_SAMPLER_VIEW); st->prefer_blit_based_texture_transfer = screen->get_param(screen, PIPE_CAP_PREFER_BLIT_BASED_TEXTURE_TRANSFER); |