diff options
author | Marek Olšák <[email protected]> | 2018-02-13 16:02:14 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-07-31 18:09:57 -0400 |
commit | 38ab39f6501f78ea7048e8a16a97fdb075b9d8c7 (patch) | |
tree | 8c1166d4d47c30d4e2a1316f62fa33e971c69bb6 /src/mesa/main/formats.h | |
parent | 5be352b4303a759c8ebbbd047365e94f66a098f0 (diff) |
mesa: add ASTC 2D LDR decoder
Tested-by: Mike Lothian <[email protected]>
Tested-By: Gert Wollny <[email protected]>
Tested-by: Dieter Nützel <[email protected]>
Diffstat (limited to 'src/mesa/main/formats.h')
-rw-r--r-- | src/mesa/main/formats.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/formats.h b/src/mesa/main/formats.h index 2afa886782b..335e4de9955 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -721,6 +721,9 @@ _mesa_is_format_integer(mesa_format format); extern bool _mesa_is_format_etc2(mesa_format format); +bool +_mesa_is_format_astc_2d(mesa_format format); + GLenum _mesa_is_format_color_format(mesa_format format); |