Files
comaps/libs/shaders/program_manager_metal.mm
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

29 lines
1.2 KiB
Plaintext

#include "shaders/program_manager.hpp"
#include "shaders/metal_program_params.hpp"
#include "shaders/metal_program_pool.hpp"
#include "drape/metal/metal_base_context.hpp"
namespace gpu
{
void ProgramManager::InitForMetal(ref_ptr<dp::GraphicsContext> context)
{
ASSERT(dynamic_cast<dp::metal::MetalBaseContext *>(context.get()) != nullptr, ());
ref_ptr<dp::metal::MetalBaseContext> metalContext = context;
m_pool = make_unique_dp<metal::MetalProgramPool>(metalContext->GetMetalDevice());
m_paramsSetter = make_unique_dp<metal::MetalProgramParamsSetter>();
ref_ptr<metal::MetalProgramPool> metalPool = make_ref(m_pool);
metalContext->SetSystemPrograms(metalPool->GetSystemProgram(SystemProgram::ClearColor),
metalPool->GetSystemProgram(SystemProgram::ClearDepth),
metalPool->GetSystemProgram(SystemProgram::ClearColorAndDepth));
}
void ProgramManager::DestroyForMetal(ref_ptr<dp::GraphicsContext> context)
{
ASSERT(dynamic_cast<dp::metal::MetalBaseContext *>(context.get()) != nullptr, ());
ref_ptr<dp::metal::MetalBaseContext> metalContext = context;
metalContext->ResetPipelineStatesCache();
}
} // namespace gpu