stk-code_catmod/lib/irrlicht/source/Irrlicht/MoltenVK.h

25 lines
547 B
C
Raw Normal View History

#ifndef HEADER_MAC_VULKAN_HPP
#define HEADER_MAC_VULKAN_HPP
#ifdef DLOPEN_MOLTENVK
namespace irr
{
class MoltenVK
{
private:
bool m_loaded;
2022-04-15 05:05:38 -04:00
void* m_handle;
public:
// ------------------------------------------------------------------------
MoltenVK();
// ------------------------------------------------------------------------
~MoltenVK();
// ------------------------------------------------------------------------
bool loaded() const { return m_loaded; }
};
}
#endif
#endif