axmol/core/renderer/backend/ProgramStateRegistry.h

42 lines
954 B
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
#pragma once
#include "Macros.h"
#include "base/Ref.h"
#include "platform/PlatformMacros.h"
2019-11-23 20:27:39 +08:00
#include "Program.h"
#include "ProgramState.h"
#include <string>
#include <unordered_map>
NS_AX_BACKEND_BEGIN
2022-10-12 19:44:31 +08:00
2019-11-23 20:27:39 +08:00
/**
* @addtogroup _backend
* @{
* #todo: Rename to ProgramStateRegistry
*/
2022-10-12 19:44:31 +08:00
class AX_DLL ProgramStateRegistry : public Ref
2021-12-25 10:04:45 +08:00
{
2019-11-23 20:27:39 +08:00
public:
/** returns the shared instance */
static ProgramStateRegistry* getInstance();
/** purges the cache. It releases the retained instance. */
static void destroyInstance();
bool init();
void clearPrograms();
void registerProgram(uint32_t programType, int textureSamplerFlags, uint32_t builtinProgramType);
2019-11-23 20:27:39 +08:00
ProgramState* newProgramState(uint32_t programType, int textureSamplerFlags);
uint32_t getProgramType(uint32_t programType, int textureSamplerFlags);
2019-11-23 20:27:39 +08:00
protected:
std::unordered_map<uint32_t, uint32_t> _registry;
2019-11-23 20:27:39 +08:00
};
2021-12-25 10:04:45 +08:00
// end of _backend group
2019-11-23 20:27:39 +08:00
/// @}
NS_AX_BACKEND_END