Panda3DS/include/PICA/dynapica/pica_recs.hpp
2024-10-22 19:13:25 +03:00

13 lines
No EOL
314 B
C++

#pragma once
#include "helpers.hpp"
#include "vertex_loader_rec.hpp"
// Common file for our PICA JITs (From PICA shader -> CPU assembly)
namespace Dynapica {
#ifdef PANDA3DS_DYNAPICA_SUPPORTED
static constexpr bool supported() { return true; }
#else
static constexpr bool supported() { return false; }
#endif
}