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

metal_program_pool.hpp « shaders - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c9f3802c77d772903ebed63ae711b5c1b3504ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#pragma once
#import <MetalKit/MetalKit.h>

#include "shaders/program_pool.hpp"

#include "drape/pointers.hpp"

#include <map>
#include <string>

namespace gpu
{
enum class SystemProgram
{
  ClearColor = 0,
  ClearDepth,
  ClearColorAndDepth,
  
  SystemProgramsCount
};
  
namespace metal
{
class MetalProgramPool : public ProgramPool
{
public:
  explicit MetalProgramPool(id<MTLDevice> device);
  ~MetalProgramPool() override;

  drape_ptr<dp::GpuProgram> Get(Program program) override;
  drape_ptr<dp::GpuProgram> GetSystemProgram(SystemProgram program);
  
private:
  drape_ptr<dp::GpuProgram> Get(std::string const & programName,
                                std::string const & vertexShaderName,
                                std::string const & fragmentShaderName,
                                std::map<uint8_t, uint8_t> const & layout);
  
  id<MTLFunction> GetFunction(std::string const & name);
  id<MTLDevice> m_device;
  id<MTLLibrary> m_library;
  std::map<std::string, id<MTLFunction>> m_functions;
};
}  // namespace metal
}  // namespace gpu