blob: a7cdbdade506f2778195833930310e5f34c08e8f (
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
46
47
48
49
50
51
52
53
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default
#ifndef GL_HELPER_H
#define GL_HELPER_H
#include <QtCore/qscopedpointer.h>
// This is a workaround to avoid to include //gpu/GLES2/gl2chromium.h
#define GPU_GLES2_GL2CHROMIUM_H_
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#undef glCreateMemoryObjectsEXT
#undef glDeleteMemoryObjectsEXT
#undef glEGLImageTargetTexture2DOES
#undef glImportMemoryFdEXT
#undef glTextureStorageMem2DEXT
QT_BEGIN_NAMESPACE
const char *getGLErrorString(uint32_t error);
class GLHelper
{
public:
struct GLExtFunctions
{
GLExtFunctions();
PFNGLCREATEMEMORYOBJECTSEXTPROC glCreateMemoryObjectsEXT;
PFNGLDELETEMEMORYOBJECTSEXTPROC glDeleteMemoryObjectsEXT;
PFNGLEGLIMAGETARGETTEXTURE2DOESPROC glEGLImageTargetTexture2DOES;
PFNGLIMPORTMEMORYFDEXTPROC glImportMemoryFdEXT;
PFNGLISMEMORYOBJECTEXTPROC glIsMemoryObjectEXT;
PFNGLMEMORYOBJECTPARAMETERIVEXTPROC glMemoryObjectParameterivEXT;
PFNGLTEXSTORAGEMEM2DEXTPROC glTexStorageMem2DEXT;
};
static GLHelper *instance();
GLExtFunctions *functions() const { return m_functions.get(); }
private:
GLHelper();
QScopedPointer<GLExtFunctions> m_functions;
};
QT_END_NAMESPACE
#endif // GL_HELPER_H
|