Welcome to mirror list, hosted at ThFree Co, Russian Federation.

program_manager_metal.mm « shaders - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9520234fd40d8d1db90c7be9cb77f4e4590c226b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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));
}
}  // namespace gpu