mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
24 lines
427 B
C
24 lines
427 B
C
|
#pragma once
|
||
|
|
||
|
#include "dxvk_include.h"
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
/**
|
||
|
* \brief Format info structure
|
||
|
*
|
||
|
* Provides some useful information
|
||
|
* about a Vulkan image format.
|
||
|
*/
|
||
|
struct DxvkFormatInfo {
|
||
|
/// Size of an element in this format
|
||
|
uint32_t byteSize;
|
||
|
|
||
|
/// Available image aspect flags
|
||
|
VkImageAspectFlags aspectMask;
|
||
|
};
|
||
|
|
||
|
|
||
|
const DxvkFormatInfo* imageFormatInfo(VkFormat format);
|
||
|
|
||
|
}
|