mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-22 22:23:44 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
36
libs/drape/gl_extensions_list.hpp
Normal file
36
libs/drape/gl_extensions_list.hpp
Normal file
@@ -0,0 +1,36 @@
|
||||
#pragma once
|
||||
|
||||
#include "drape/drape_global.hpp"
|
||||
|
||||
#include "base/macros.hpp"
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
namespace dp
|
||||
{
|
||||
class GLExtensionsList
|
||||
{
|
||||
public:
|
||||
enum ExtensionName
|
||||
{
|
||||
VertexArrayObject,
|
||||
MapBuffer,
|
||||
UintIndices,
|
||||
MapBufferRange
|
||||
};
|
||||
|
||||
GLExtensionsList() = default;
|
||||
void Init(dp::ApiVersion apiVersion);
|
||||
bool IsSupported(ExtensionName extName) const;
|
||||
|
||||
private:
|
||||
|
||||
void CheckExtension(ExtensionName enumName, std::string const & extName);
|
||||
void SetExtension(ExtensionName enumName, bool isSupported);
|
||||
|
||||
std::map<ExtensionName, bool> m_supportedMap;
|
||||
|
||||
DISALLOW_COPY_AND_MOVE(GLExtensionsList);
|
||||
};
|
||||
} // namespace dp
|
||||
Reference in New Issue
Block a user