mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.2 KiB
54 lines
2.2 KiB
/* |
|
This file is part of Magnum. |
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 |
|
Vladimír Vondruš <mosra@centrum.cz> |
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
copy of this software and associated documentation files (the "Software"), |
|
to deal in the Software without restriction, including without limitation |
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|
and/or sell copies of the Software, and to permit persons to whom the |
|
Software is furnished to do so, subject to the following conditions: |
|
|
|
The above copyright notice and this permission notice shall be included |
|
in all copies or substantial portions of the Software. |
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
DEALINGS IN THE SOFTWARE. |
|
*/ |
|
|
|
/* See Magnum/Vk/Enums.cpp and Magnum/Vk/Test/EnumsTest.cpp */ |
|
#ifdef _c |
|
_c(Bc1RGBUnorm, BC1_RGB_UNORM_BLOCK) |
|
_c(Bc1RGBSrgb, BC1_RGB_SRGB_BLOCK) |
|
_c(Bc1RGBAUnorm, BC1_RGBA_UNORM_BLOCK) |
|
_c(Bc1RGBASrgb, BC1_RGBA_SRGB_BLOCK) |
|
_c(Bc2RGBAUnorm, BC2_UNORM_BLOCK) |
|
_c(Bc2RGBASrgb, BC2_SRGB_BLOCK) |
|
_c(Bc3RGBAUnorm, BC3_UNORM_BLOCK) |
|
_c(Bc3RGBASrgb, BC3_SRGB_BLOCK) |
|
_c(Bc4RUnorm, BC4_UNORM_BLOCK) |
|
_c(Bc4RSnorm, BC4_SNORM_BLOCK) |
|
_c(Bc5RGUnorm, BC5_UNORM_BLOCK) |
|
_c(Bc5RGSnorm, BC5_SNORM_BLOCK) |
|
_c(Bc6hRGBUfloat, BC6H_UFLOAT_BLOCK) |
|
_c(Bc6hRGBSfloat, BC6H_SFLOAT_BLOCK) |
|
_c(Bc7RGBAUnorm, BC7_UNORM_BLOCK) |
|
_c(Bc7RGBASrgb, BC7_SRGB_BLOCK) |
|
_c(EacR11Unorm, EAC_R11_UNORM_BLOCK) |
|
_c(EacR11Snorm, EAC_R11_SNORM_BLOCK) |
|
_c(EacRG11Unorm, EAC_R11G11_UNORM_BLOCK) |
|
_c(EacRG11Snorm, EAC_R11G11_SNORM_BLOCK) |
|
_c(Etc2RGB8Unorm, ETC2_R8G8B8_UNORM_BLOCK) |
|
_c(Etc2RGB8Srgb, ETC2_R8G8B8_SRGB_BLOCK) |
|
_c(Etc2RGB8A1Unorm, ETC2_R8G8B8A1_UNORM_BLOCK) |
|
_c(Etc2RGB8A1Srgb, ETC2_R8G8B8A1_SRGB_BLOCK) |
|
_c(Etc2RGBA8Unorm, ETC2_R8G8B8A8_UNORM_BLOCK) |
|
_c(Etc2RGBA8Srgb, ETC2_R8G8B8A8_SRGB_BLOCK) |
|
#endif
|
|
|