summaryrefslogtreecommitdiff
path: root/src/mbgl/programs/gl/shaders.hpp
blob: 46a87f4af88adaf2dbaeb944ca23ecf38040d25e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <string>

namespace mbgl {

class ProgramParameters;

namespace programs {
namespace gl {

std::string programIdentifier(const std::string& defines1,
                              const std::string& defines2,
                              const uint8_t hash1[8],
                              const uint8_t hash2[8]);

} // namespace gl
} // namespace programs
} // namespace mbgl