stk-code_catmod/lib/graphics_engine/include/ge_vulkan_features.hpp

50 lines
2.0 KiB
C++
Raw Normal View History

2022-03-19 03:14:55 -04:00
#ifndef HEADER_GE_VULKAN_FEATURES_HPP
#define HEADER_GE_VULKAN_FEATURES_HPP
#include "vulkan_wrapper.h"
namespace GE
{
class GEVulkanDriver;
namespace GEVulkanFeatures
{
// ----------------------------------------------------------------------------
void init(GEVulkanDriver*);
// ----------------------------------------------------------------------------
void printStats();
// ----------------------------------------------------------------------------
bool supportsBindTexturesAtOnce();
// ----------------------------------------------------------------------------
bool supportsRGBA8Blit();
// ----------------------------------------------------------------------------
bool supportsR8Blit();
// ----------------------------------------------------------------------------
2022-03-19 03:14:55 -04:00
bool supportsDescriptorIndexing();
// ----------------------------------------------------------------------------
bool supportsNonUniformIndexing();
// ----------------------------------------------------------------------------
bool supportsDifferentTexturePerDraw();
// ----------------------------------------------------------------------------
2022-03-19 03:14:55 -04:00
bool supportsPartiallyBound();
2022-07-21 00:26:06 -04:00
// ----------------------------------------------------------------------------
bool supportsBindMeshTexturesAtOnce();
2022-07-23 02:02:37 -04:00
// ----------------------------------------------------------------------------
bool supportsMultiDrawIndirect();
// ----------------------------------------------------------------------------
bool supportsBaseVertexRendering();
2022-08-03 22:56:29 -04:00
// ----------------------------------------------------------------------------
bool supportsComputeInMainQueue();
2022-09-30 02:42:06 -04:00
// ----------------------------------------------------------------------------
bool supportsShaderDrawParameters();
2022-08-05 21:48:11 -04:00
// ----------------------------------------------------------------------------
bool supportsS3TCBC3();
2022-08-07 03:33:54 -04:00
// ----------------------------------------------------------------------------
2022-08-25 03:13:23 -04:00
bool supportsBPTCBC7();
// ----------------------------------------------------------------------------
2022-08-07 03:33:54 -04:00
bool supportsASTC4x4();
2022-03-19 03:14:55 -04:00
}; // GEVulkanFeatures
}
#endif