forked from organicmaps/organicmaps
[linux] Compilation fixes
This commit is contained in:
parent
c31ad98de7
commit
378cca6132
2 changed files with 6 additions and 4 deletions
|
@ -257,3 +257,5 @@ void * GLFunctions::glMapBuffer(glConst target) { return 0; }
|
|||
void GLFunctions::glUnmapBuffer(glConst target) {}
|
||||
|
||||
void GLFunctions::glDrawElements(uint16_t indexCount) {}
|
||||
|
||||
void GLFunctions::glPixelStore(glConst name, uint32_t value) {}
|
||||
|
|
|
@ -55,26 +55,26 @@ inline vec2 ToVec2(m2::PointD const & pt)
|
|||
}
|
||||
|
||||
template <typename T>
|
||||
uint8_t GetComponentCount()
|
||||
inline uint8_t GetComponentCount()
|
||||
{
|
||||
ASSERT(false, ());
|
||||
return 0;
|
||||
}
|
||||
|
||||
template <>
|
||||
uint8_t GetComponentCount<vec2>()
|
||||
inline uint8_t GetComponentCount<vec2>()
|
||||
{
|
||||
return 2;
|
||||
}
|
||||
|
||||
template <>
|
||||
uint8_t GetComponentCount<vec3>()
|
||||
inline uint8_t GetComponentCount<vec3>()
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
|
||||
template <>
|
||||
uint8_t GetComponentCount<vec4>()
|
||||
inline uint8_t GetComponentCount<vec4>()
|
||||
{
|
||||
return 4;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue