1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/src/dxvk/dxvk_format.h

24 lines
434 B
C
Raw Normal View History

2017-12-09 02:44:59 +01:00
#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
VkDeviceSize elementSize;
2017-12-09 02:44:59 +01:00
/// Available image aspect flags
VkImageAspectFlags aspectMask;
};
const DxvkFormatInfo* imageFormatInfo(VkFormat format);
}