mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-23 02:15:55 +01:00
a251600c8a
* engine: common: imagelib: add KTX2 support Adds basic KTX2 support for a few compressed formats. KTX2 essentially is a Vulkan-centric texture format that supports literally hundreds of pixel formats. For now only support for these is added: - `VK_FORMAT_BC4_UNORM_BLOCK` - `VK_FORMAT_BC4_SNORM_BLOCK` - `VK_FORMAT_BC5_UNORM_BLOCK` - `VK_FORMAT_BC5_SNORM_BLOCK` - `VK_FORMAT_BC6H_UFLOAT_BLOCK` - `VK_FORMAT_BC6H_SFLOAT_BLOCK` - `VK_FORMAT_BC7_UNORM_BLOCK` - `VK_FORMAT_BC7_SRGB_BLOCK` Adding more formats is relatively straightforward: - Copy format definition from `VkFormat` enum in `vulkan_core.h` - Add a new definition into `pixformat_t` enum. - Add format size calculation into `Image_ComputeSize()` While we're at it, also adds a few new formats to DDS: - BC4_UNORM -- PF_BC4_UNSIGNED - BC4_SNORM -- PF_BC4_SIGNED - BC5_UNORM -- PF_BC5_UNSIGNED - BC5_SNORM -- PF_BC5_SIGNED - BC7 is expanded into BC7_UNORM and BC7_SRGB ref_gl and ref_soft code is updated where it made sense. But not tested really. Support for these formats has been tested with ref_vk. * address spaces-vs-parentheses formatting where noticed * parenthesize sizeofs * move ktx2.h to imagelib as img_ktx2.h; massage it a bit * use SetBits() instead of |= * remove stale TODO comments
80 lines
2.1 KiB
C
80 lines
2.1 KiB
C
/*
|
|
img_ktx2.h - ktx2 format reference
|
|
Copyright (C) 2023 Provod
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
*/
|
|
#ifndef IMG_KTX2_H
|
|
#define IMG_KTX2_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define KTX2_IDENTIFIER_SIZE 12
|
|
#define KTX2_IDENTIFIER "\xABKTX 20\xBB\r\n\x1A\n"
|
|
|
|
/*
|
|
static const char k_ktx2_identifier[KTX2_IDENTIFIER_SIZE] =
|
|
{
|
|
'\xAB', 'K', 'T', 'X', ' ', '2', '0', '\xBB', '\r', '\n', '\x1A', '\n'
|
|
};
|
|
*/
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t vkFormat;
|
|
uint32_t typeSize;
|
|
uint32_t pixelWidth;
|
|
uint32_t pixelHeight;
|
|
uint32_t pixelDepth;
|
|
uint32_t layerCount;
|
|
uint32_t faceCount;
|
|
uint32_t levelCount;
|
|
uint32_t supercompressionScheme;
|
|
} ktx2_header_t;
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t dfdByteOffset;
|
|
uint32_t dfdByteLength;
|
|
uint32_t kvdByteOffset;
|
|
uint32_t kvdByteLength;
|
|
uint64_t sgdByteOffset;
|
|
uint64_t sgdByteLength;
|
|
} ktx2_index_t;
|
|
|
|
typedef struct
|
|
{
|
|
uint64_t byteOffset;
|
|
uint64_t byteLength;
|
|
uint64_t uncompressedByteLength;
|
|
} ktx2_level_t;
|
|
|
|
#define KTX2_LEVELS_OFFSET ( KTX2_IDENTIFIER_SIZE + sizeof( ktx2_header_t ) + sizeof( ktx2_index_t ))
|
|
|
|
#define KTX2_MINIMAL_HEADER_SIZE ( KTX2_LEVELS_OFFSET + sizeof( ktx2_level_t ))
|
|
|
|
// These have the same values as enum VkFormat in vulkan_core.h
|
|
// There are hundreds of formats which can be contained in KTX2.
|
|
// Below are listed the ones which are supported here. This list can be extended.
|
|
typedef enum
|
|
{
|
|
KTX2_FORMAT_BC4_UNORM_BLOCK = 139,
|
|
KTX2_FORMAT_BC4_SNORM_BLOCK = 140,
|
|
KTX2_FORMAT_BC5_UNORM_BLOCK = 141,
|
|
KTX2_FORMAT_BC5_SNORM_BLOCK = 142,
|
|
KTX2_FORMAT_BC6H_UFLOAT_BLOCK = 143,
|
|
KTX2_FORMAT_BC6H_SFLOAT_BLOCK = 144,
|
|
KTX2_FORMAT_BC7_UNORM_BLOCK = 145,
|
|
KTX2_FORMAT_BC7_SRGB_BLOCK = 146,
|
|
} ktx2_format_t;
|
|
|
|
#endif // IMG_KTX2_H
|