mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
13 lines
No EOL
353 B
C++
13 lines
No EOL
353 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "vertex_loader_rec.hpp"
|
|
|
|
// Common file for our PICA JITs (From vertex config -> CPU assembly and 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
|
|
} |