FCT
载入中...
搜索中...
未找到
ImageAspect.h
浏览该文件的文档.
1#ifndef IMAGEASPECT_H
2#define IMAGEASPECT_H
3#include "../Base/Flags.h"
4namespace FCT
5{
6 enum class ImageAspect
7 {
8 color = 1 << 0,
9 depth = 1 << 1,
10 stencil = 1 << 2
11 };
13#ifdef FCT_USE_VULKAN
20#endif
21}
22#endif //IMAGEASPECT_H
#define FCT_TO_VK_FLAGS(FlagBit)
#define FCT_TO_VK_FLAG_BIT_END(FlagBit)
#define FCT_TO_VK_FLAG_BIT_CASE(FlagBit, value, Value)
#define FCT_TO_VK_FLAG_BIT_BEGIN(FlagBit)
#define FCT_DECLARE_FLAGS(BitType)