Files
comaps/libs/shaders/gl_program_pool.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

36 lines
776 B
C++

#pragma once
#include "shaders/program_pool.hpp"
#include "drape/drape_global.hpp"
#include "drape/pointers.hpp"
#include "drape/shader.hpp"
#include <cstdint>
#include <map>
#include <string>
namespace gpu
{
class GLProgramPool : public ProgramPool
{
public:
explicit GLProgramPool(dp::ApiVersion apiVersion);
~GLProgramPool() override;
drape_ptr<dp::GpuProgram> Get(Program program) override;
void SetDefines(std::string const & defines);
private:
ref_ptr<dp::Shader> GetShader(std::string const & name, std::string const & source, dp::Shader::Type type);
dp::ApiVersion const m_apiVersion;
std::string m_baseDefines;
using Shaders = std::map<std::string, drape_ptr<dp::Shader>>;
Shaders m_shaders;
std::string m_defines;
};
} // namespace gpu