axmol/core/renderer/backend/ProgramManager.cpp

450 lines
20 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2018-2019 Xiamen Yaji Software Co., Ltd.
2022-09-24 10:42:11 +08:00
Copyright (c) 2022 Bytedance Inc.
2019-11-23 20:27:39 +08:00
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2019-11-23 20:27:39 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
2021-12-25 10:04:45 +08:00
2022-10-12 19:44:31 +08:00
#include "ProgramManager.h"
2019-11-23 20:27:39 +08:00
#include "Device.h"
#include "ShaderModule.h"
#include "renderer/ccShaders.h"
#include "base/ccMacros.h"
#include "base/CCConfiguration.h"
NS_AX_BACKEND_BEGIN
2019-11-23 20:27:39 +08:00
namespace
{
2021-12-25 10:04:45 +08:00
std::string getShaderMacrosForLight()
{
char def[256];
auto conf = Configuration::getInstance();
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
snprintf(def, sizeof(def) - 1,
"\n#define MAX_DIRECTIONAL_LIGHT_NUM %d \n"
"\n#define MAX_POINT_LIGHT_NUM %d \n"
"\n#define MAX_SPOT_LIGHT_NUM %d \n",
conf->getMaxSupportDirLightInShader(), conf->getMaxSupportPointLightInShader(),
conf->getMaxSupportSpotLightInShader());
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
return std::string(def);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
} // namespace
2019-11-23 20:27:39 +08:00
2022-10-12 19:44:31 +08:00
ProgramManager* ProgramManager::_sharedProgramManager = nullptr;
2019-11-23 20:27:39 +08:00
2022-10-12 19:44:31 +08:00
Program* ProgramManager::newProgram(std::string_view vertShaderSource,
std::string_view fragShaderSource,
std::function<void(Program*)> fnSetupLayout)
2019-11-23 20:27:39 +08:00
{
2022-10-12 19:44:31 +08:00
auto program = Device::getInstance()->newProgram(vertShaderSource, fragShaderSource);
if (program)
fnSetupLayout(program);
return program;
}
ProgramManager* ProgramManager::getInstance()
{
if (!_sharedProgramManager)
2019-11-23 20:27:39 +08:00
{
2022-10-12 19:44:31 +08:00
_sharedProgramManager = new ProgramManager();
if (!_sharedProgramManager->init())
2019-11-23 20:27:39 +08:00
{
2022-10-12 19:44:31 +08:00
AX_SAFE_DELETE(_sharedProgramManager);
2019-11-23 20:27:39 +08:00
}
}
2022-10-12 19:44:31 +08:00
return _sharedProgramManager;
2019-11-23 20:27:39 +08:00
}
2022-10-12 19:44:31 +08:00
void ProgramManager::destroyInstance()
2019-11-23 20:27:39 +08:00
{
2022-10-12 19:44:31 +08:00
AX_SAFE_RELEASE_NULL(_sharedProgramManager);
2019-11-23 20:27:39 +08:00
}
2022-10-12 19:44:31 +08:00
ProgramManager::~ProgramManager()
2019-11-23 20:27:39 +08:00
{
for (auto&& program : _cachedPrograms)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(program.second);
2019-11-23 20:27:39 +08:00
}
2022-10-12 19:44:31 +08:00
AXLOGINFO("deallocing ProgramManager: %p", this);
backend::ShaderCache::destroyInstance();
2019-11-23 20:27:39 +08:00
}
2022-09-23 22:41:30 +08:00
/*
* shader vertex layout setup functions
*/
2022-09-24 10:42:11 +08:00
void VertexLayoutHelper::setupDummy(Program*) {}
void VertexLayoutHelper::setupTexture(Program* program)
{
2022-09-23 22:41:30 +08:00
auto vertexLayout = program->getVertexLayout();
/// a_position
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_POSITION,
program->getAttributeLocation(backend::Attribute::POSITION),
backend::VertexFormat::FLOAT2, 0, false);
/// a_texCoord
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_TEXCOORD,
program->getAttributeLocation(backend::Attribute::TEXCOORD),
backend::VertexFormat::FLOAT2, 2 * sizeof(float), false);
vertexLayout->setStride(4 * sizeof(float));
}
2022-09-24 10:42:11 +08:00
void VertexLayoutHelper::setupSprite(Program* program)
2022-09-23 22:41:30 +08:00
{
auto vertexLayout = program->getVertexLayout();
/// a_position
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_POSITION,
program->getAttributeLocation(backend::Attribute::POSITION),
backend::VertexFormat::FLOAT3, 0, false);
/// a_texCoord
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_TEXCOORD,
program->getAttributeLocation(backend::Attribute::TEXCOORD),
backend::VertexFormat::FLOAT2, offsetof(V3F_C4B_T2F, texCoords), false);
/// a_color
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_COLOR, program->getAttributeLocation(backend::Attribute::COLOR),
backend::VertexFormat::UBYTE4, offsetof(V3F_C4B_T2F, colors), true);
vertexLayout->setStride(sizeof(V3F_C4B_T2F));
}
2022-09-24 10:42:11 +08:00
void VertexLayoutHelper::setupDrawNode(Program* program)
2022-09-23 22:41:30 +08:00
{
auto vertexLayout = program->getVertexLayout();
2022-09-24 10:42:11 +08:00
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_POSITION,
program->getAttributeLocation(backend::Attribute::POSITION),
backend::VertexFormat::FLOAT2, 0, false);
2022-09-23 22:41:30 +08:00
2022-09-24 10:42:11 +08:00
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_TEXCOORD,
program->getAttributeLocation(backend::Attribute::TEXCOORD),
backend::VertexFormat::FLOAT2, offsetof(V2F_C4B_T2F, texCoords), false);
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_COLOR, program->getAttributeLocation(backend::Attribute::COLOR),
backend::VertexFormat::UBYTE4, offsetof(V2F_C4B_T2F, colors), true);
2022-09-23 22:41:30 +08:00
vertexLayout->setStride(sizeof(V2F_C4B_T2F));
}
2022-09-24 10:42:11 +08:00
void VertexLayoutHelper::setupDrawNode3D(Program* program)
2022-09-23 22:41:30 +08:00
{
auto vertexLayout = program->getVertexLayout();
2022-09-24 10:42:11 +08:00
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_POSITION,
program->getAttributeLocation(backend::Attribute::POSITION),
backend::VertexFormat::FLOAT3, 0, false);
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_COLOR, program->getAttributeLocation(backend::Attribute::COLOR),
backend::VertexFormat::UBYTE4, sizeof(Vec3), true);
2022-09-23 22:41:30 +08:00
vertexLayout->setStride(sizeof(V3F_C4B));
}
2022-09-24 10:42:11 +08:00
void VertexLayoutHelper::setupSkyBox(Program* program)
2022-09-23 22:41:30 +08:00
{
auto vertexLayout = program->getVertexLayout();
auto attrNameLoc = program->getAttributeLocation(shaderinfos::attribute::ATTRIBUTE_NAME_POSITION);
vertexLayout->setAttribute(shaderinfos::attribute::ATTRIBUTE_NAME_POSITION, attrNameLoc,
backend::VertexFormat::FLOAT3, 0, false);
vertexLayout->setStride(sizeof(Vec3));
}
2022-09-24 10:42:11 +08:00
void VertexLayoutHelper::setupPU3D(Program* program)
2022-09-23 22:41:30 +08:00
{
2022-09-24 10:42:11 +08:00
auto vertexLayout = program->getVertexLayout();
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_POSITION,
program->getAttributeLocation(backend::Attribute::POSITION),
backend::VertexFormat::FLOAT3, offsetof(V3F_T2F_C4F, position), false);
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_TEXCOORD,
program->getAttributeLocation(backend::Attribute::TEXCOORD),
backend::VertexFormat::FLOAT2, offsetof(V3F_T2F_C4F, uv), false);
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_COLOR, program->getAttributeLocation(backend::Attribute::COLOR),
backend::VertexFormat::FLOAT4, offsetof(V3F_T2F_C4F, color), false);
2022-09-23 22:41:30 +08:00
vertexLayout->setStride(sizeof(V3F_T2F_C4F));
}
2022-09-24 10:42:11 +08:00
void VertexLayoutHelper::setupPos(Program* program)
2022-09-23 22:41:30 +08:00
{
2022-09-24 10:42:11 +08:00
auto vertexLayout = program->getVertexLayout();
2022-09-23 22:41:30 +08:00
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_POSITION,
program->getAttributeLocation(backend::Attribute::POSITION),
backend::VertexFormat::FLOAT2, 0, false);
vertexLayout->setStride(sizeof(Vec2));
}
2022-09-24 10:42:11 +08:00
void VertexLayoutHelper::setupPosColor(Program* program)
2022-09-23 22:41:30 +08:00
{
auto vertexLayout = program->getVertexLayout();
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_POSITION,
program->getAttributeLocation(backend::Attribute::POSITION),
backend::VertexFormat::FLOAT3, 0, false);
2022-09-24 10:42:11 +08:00
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_COLOR, program->getAttributeLocation(backend::Attribute::COLOR),
2022-09-23 22:41:30 +08:00
backend::VertexFormat::FLOAT4, offsetof(V3F_C4F, colors), false);
vertexLayout->setStride(sizeof(V3F_C4F));
}
2022-09-24 10:42:11 +08:00
void VertexLayoutHelper::setupTerrain3D(Program* program)
{
2022-09-23 22:41:30 +08:00
auto vertexLayout = program->getVertexLayout();
2022-09-24 10:42:11 +08:00
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_POSITION,
program->getAttributeLocation(backend::Attribute::POSITION),
2022-09-23 22:41:30 +08:00
backend::VertexFormat::FLOAT3, 0, false);
2022-09-24 10:42:11 +08:00
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_TEXCOORD,
program->getAttributeLocation(backend::Attribute::TEXCOORD),
2022-09-23 22:41:30 +08:00
backend::VertexFormat::FLOAT2, offsetof(V3F_T2F_N3F, texcoord), false);
2022-09-24 10:42:11 +08:00
vertexLayout->setAttribute(backend::ATTRIBUTE_NAME_NORMAL,
program->getAttributeLocation(backend::Attribute::NORMAL), backend::VertexFormat::FLOAT3,
offsetof(V3F_T2F_N3F, normal), false);
2022-09-23 22:41:30 +08:00
vertexLayout->setStride(sizeof(V3F_T2F_N3F));
}
// ### end of vertex layout setup functions
2022-10-12 19:44:31 +08:00
bool ProgramManager::init()
2019-11-23 20:27:39 +08:00
{
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::POSITION_TEXTURE_COLOR, positionTextureColor_vert, positionTextureColor_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupSprite);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::DUAL_SAMPLER, positionTextureColor_vert, dualSampler_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupSprite);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::LABEL_DISTANCE_NORMAL, positionTextureColor_vert, label_distanceNormal_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupSprite);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::LABEL_NORMAL, positionTextureColor_vert, label_normal_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupSprite);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::LABLE_OUTLINE, positionTextureColor_vert, labelOutline_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupSprite);
2021-12-25 10:04:45 +08:00
registerProgramFactory(ProgramType::LABLE_DISTANCEFIELD_GLOW, positionTextureColor_vert,
2022-09-24 10:42:11 +08:00
labelDistanceFieldGlow_frag, VertexLayoutHelper::setupSprite);
2021-12-25 10:04:45 +08:00
registerProgramFactory(ProgramType::POSITION_COLOR_LENGTH_TEXTURE, positionColorLengthTexture_vert,
2022-09-24 10:42:11 +08:00
positionColorLengthTexture_frag, VertexLayoutHelper::setupDrawNode);
2021-12-25 10:04:45 +08:00
registerProgramFactory(ProgramType::POSITION_COLOR_TEXTURE_AS_POINTSIZE, positionColorTextureAsPointsize_vert,
2022-09-24 10:42:11 +08:00
positionColor_frag, VertexLayoutHelper::setupDrawNode);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::POSITION_COLOR, positionColor_vert, positionColor_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupPosColor);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::LAYER_RADIA_GRADIENT, position_vert, layer_radialGradient_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupPos);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::POSITION_TEXTURE, positionTexture_vert, positionTexture_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupTexture);
2021-12-25 10:04:45 +08:00
registerProgramFactory(ProgramType::POSITION_TEXTURE_COLOR_ALPHA_TEST, positionTextureColor_vert,
2022-09-24 10:42:11 +08:00
positionTextureColorAlphaTest_frag, VertexLayoutHelper::setupSprite);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::POSITION_UCOLOR, positionUColor_vert, positionColor_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupPos);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::DUAL_SAMPLER_GRAY, positionTextureColor_vert, dualSampler_gray_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupSprite);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::GRAY_SCALE, positionTextureColor_vert, grayScale_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupSprite);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::LINE_COLOR_3D, lineColor3D_vert, lineColor3D_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupDrawNode3D);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::CAMERA_CLEAR, cameraClear_vert, cameraClear_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupSprite);
registerProgramFactory(ProgramType::SKYBOX_3D, CC3D_skybox_vert, CC3D_skybox_frag, VertexLayoutHelper::setupSkyBox);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::SKINPOSITION_TEXTURE_3D, CC3D_skinPositionTexture_vert, CC3D_colorTexture_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupDummy);
auto lightDef = getShaderMacrosForLight();
2021-12-25 10:04:45 +08:00
registerProgramFactory(ProgramType::SKINPOSITION_NORMAL_TEXTURE_3D, lightDef + CC3D_skinPositionNormalTexture_vert,
2022-09-24 10:42:11 +08:00
lightDef + CC3D_colorNormalTexture_frag, VertexLayoutHelper::setupDummy);
2021-12-25 10:04:45 +08:00
registerProgramFactory(ProgramType::POSITION_NORMAL_TEXTURE_3D, lightDef + CC3D_positionNormalTexture_vert,
2022-09-24 10:42:11 +08:00
lightDef + CC3D_colorNormalTexture_frag, VertexLayoutHelper::setupDummy);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::POSITION_TEXTURE_3D, CC3D_positionTexture_vert, CC3D_colorTexture_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupDummy);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::POSITION_3D, CC3D_positionTexture_vert, CC3D_color_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupSprite);
2021-12-25 10:04:45 +08:00
registerProgramFactory(ProgramType::POSITION_NORMAL_3D, lightDef + CC3D_positionNormalTexture_vert,
2022-09-24 10:42:11 +08:00
lightDef + CC3D_colorNormal_frag, VertexLayoutHelper::setupDummy);
const char* normalMapDef = "\n#define USE_NORMAL_MAPPING 1 \n";
2021-12-25 10:04:45 +08:00
registerProgramFactory(ProgramType::POSITION_BUMPEDNORMAL_TEXTURE_3D,
lightDef + normalMapDef + CC3D_positionNormalTexture_vert,
2022-09-24 10:42:11 +08:00
lightDef + normalMapDef + CC3D_colorNormalTexture_frag, VertexLayoutHelper::setupDummy);
2021-12-25 10:04:45 +08:00
registerProgramFactory(ProgramType::SKINPOSITION_BUMPEDNORMAL_TEXTURE_3D,
lightDef + normalMapDef + CC3D_skinPositionNormalTexture_vert,
2022-09-24 10:42:11 +08:00
lightDef + normalMapDef + CC3D_colorNormalTexture_frag, VertexLayoutHelper::setupDummy);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::TERRAIN_3D, CC3D_terrain_vert, CC3D_terrain_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupTerrain3D);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::PARTICLE_TEXTURE_3D, CC3D_particle_vert, CC3D_particleTexture_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupPU3D);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::PARTICLE_COLOR_3D, CC3D_particle_vert, CC3D_particleColor_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupPU3D);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::QUAD_COLOR_2D, CC2D_quadColor_vert, CC2D_quadColor_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupDummy);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::QUAD_TEXTURE_2D, CC2D_quadTexture_vert, CC2D_quadTexture_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupDummy);
registerProgramFactory(ProgramType::HSV, positionTextureColor_vert, hsv_frag, VertexLayoutHelper::setupSprite);
2022-09-23 22:41:30 +08:00
registerProgramFactory(ProgramType::HSV_DUAL_SAMPLER, positionTextureColor_vert, dualSampler_hsv_frag,
2022-09-24 10:42:11 +08:00
VertexLayoutHelper::setupSprite);
registerProgramFactory(ProgramType::VIDEO_TEXTURE_YUY2, positionTextureColor_vert,
std::string{videoTextureYUY2_frag},
VertexLayoutHelper::setupSprite);
registerProgramFactory(ProgramType::VIDEO_TEXTURE_NV12, positionTextureColor_vert,
std::string{videoTextureNV12_frag},
VertexLayoutHelper::setupSprite);
registerProgramFactory(ProgramType::VIDEO_TEXTURE_BGR32, positionTextureColor_vert,
std::string{videoTextureBGRA_frag},
VertexLayoutHelper::setupSprite);
// The builtin dual sampler shader registry
ProgramStateRegistry::getInstance()->registerProgram(ProgramType::POSITION_TEXTURE_COLOR,
2021-12-25 10:04:45 +08:00
TextureSamplerFlag::DUAL_SAMPLER,
getBuiltinProgram(ProgramType::DUAL_SAMPLER));
2021-12-25 10:04:45 +08:00
ProgramStateRegistry::getInstance()->registerProgram(ProgramType::GRAY_SCALE, TextureSamplerFlag::DUAL_SAMPLER,
getBuiltinProgram(ProgramType::DUAL_SAMPLER_GRAY));
2021-12-25 10:04:45 +08:00
ProgramStateRegistry::getInstance()->registerProgram(ProgramType::HSV, TextureSamplerFlag::DUAL_SAMPLER,
getBuiltinProgram(ProgramType::HSV_DUAL_SAMPLER));
2019-11-23 20:27:39 +08:00
return true;
}
2022-10-12 19:44:31 +08:00
Program* ProgramManager::getCustomProgram(uint32_t type) const
{
return getBuiltinProgram(type | ProgramType::CUSTOM_PROGRAM);
}
2022-10-12 19:44:31 +08:00
Program* ProgramManager::getBuiltinProgram(uint32_t type) const
{
auto iter = _cachedPrograms.find(type);
if (iter != _cachedPrograms.end())
return iter->second;
return addProgram(type);
}
2022-10-12 19:44:31 +08:00
Program* ProgramManager::addProgram(uint32_t internalType) const
2019-11-23 20:27:39 +08:00
{
Program* program = nullptr;
if (internalType < ProgramType::BUILTIN_COUNT)
{
auto& func = _builtinFactories[internalType];
2021-12-25 10:04:45 +08:00
if (func)
program = func();
}
2021-12-25 10:04:45 +08:00
else
{
auto iter = _customFactories.find(internalType);
2021-12-25 10:04:45 +08:00
if (iter != _customFactories.end())
{
auto& func = iter->second;
2021-12-25 10:04:45 +08:00
if (func)
program = func();
}
}
2021-12-25 10:04:45 +08:00
if (program)
{
program->setProgramType(internalType);
_cachedPrograms.emplace(internalType, program);
2019-11-23 20:27:39 +08:00
}
return program;
2019-11-23 20:27:39 +08:00
}
2022-10-12 19:44:31 +08:00
void ProgramManager::registerCustomProgramFactory(uint32_t type,
2021-12-25 10:04:45 +08:00
std::string vertShaderSource,
2022-09-23 22:41:30 +08:00
std::string fragShaderSource,
2022-09-24 10:42:11 +08:00
std::function<void(Program*)> fnSetupLayout)
2019-11-23 20:27:39 +08:00
{
auto internalType = ProgramType::CUSTOM_PROGRAM | type;
2022-09-23 22:41:30 +08:00
registerProgramFactory(internalType, std::move(vertShaderSource), std::move(fragShaderSource),
2022-09-24 10:42:11 +08:00
std::move(fnSetupLayout));
}
2022-10-12 19:44:31 +08:00
void ProgramManager::registerProgramFactory(uint32_t internalType,
2021-12-25 10:04:45 +08:00
std::string&& vertShaderSource,
2022-09-23 22:41:30 +08:00
std::string&& fragShaderSource,
2022-09-24 10:42:11 +08:00
std::function<void(Program*)> fnSetupLayout)
{
2022-09-23 22:41:30 +08:00
auto constructProgram = [vsrc = std::move(vertShaderSource), fsrc = std::move(fragShaderSource),
2022-09-24 10:42:11 +08:00
setupLayout = std::move(fnSetupLayout)]() {
2022-09-23 22:41:30 +08:00
auto program = backend::Device::getInstance()->newProgram(vsrc, fsrc);
setupLayout(program);
return program;
};
2021-12-25 10:04:45 +08:00
if (internalType < ProgramType::BUILTIN_COUNT)
{
_builtinFactories[internalType] = constructProgram;
}
2021-12-25 10:04:45 +08:00
else
{
auto it = _customFactories.find(internalType);
if (it == _customFactories.end())
_customFactories.emplace(internalType, constructProgram);
else
it->second = constructProgram;
2019-11-23 20:27:39 +08:00
}
}
2022-10-12 19:44:31 +08:00
void ProgramManager::removeProgram(Program* program)
2019-11-23 20:27:39 +08:00
{
if (!program)
{
return;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
for (auto it = _cachedPrograms.cbegin(); it != _cachedPrograms.cend();)
{
if (it->second == program)
{
it->second->release();
it = _cachedPrograms.erase(it);
break;
}
else
++it;
}
}
2022-10-12 19:44:31 +08:00
void ProgramManager::removeUnusedProgram()
2019-11-23 20:27:39 +08:00
{
for (auto iter = _cachedPrograms.cbegin(); iter != _cachedPrograms.cend();)
{
auto program = iter->second;
if (program->getReferenceCount() == 1)
{
2022-10-01 16:24:52 +08:00
// AXLOG("axmol: TextureCache: removing unused program");
2019-11-23 20:27:39 +08:00
program->release();
iter = _cachedPrograms.erase(iter);
}
else
{
++iter;
}
}
}
2022-10-12 19:44:31 +08:00
void ProgramManager::removeAllPrograms()
2019-11-23 20:27:39 +08:00
{
ProgramStateRegistry::getInstance()->clearPrograms();
for (auto&& program : _cachedPrograms)
2019-11-23 20:27:39 +08:00
{
program.second->release();
}
_cachedPrograms.clear();
}
NS_AX_BACKEND_END