2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2007 Rivo Laks <rivolaks@hot.ee>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_GLUTILS_FUNCS_H
|
|
|
|
#define KWIN_GLUTILS_FUNCS_H
|
|
|
|
|
2013-12-03 09:43:57 +00:00
|
|
|
#include <kwinglutils_export.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2014-02-11 18:57:06 +00:00
|
|
|
#include <epoxy/gl.h>
|
2016-11-11 08:16:23 +00:00
|
|
|
#include <functional>
|
2012-03-22 14:10:30 +00:00
|
|
|
|
2014-07-22 10:28:07 +00:00
|
|
|
// qopengl.h declares GLdouble as a typedef of float when Qt is built
|
|
|
|
// with GLES support. This conflicts with the epoxy/gl_generated.h
|
|
|
|
// declaration, so we have to prevent the Qt header from being #included.
|
|
|
|
#define QOPENGL_H
|
|
|
|
|
|
|
|
#ifndef QOPENGLF_APIENTRY
|
|
|
|
#define QOPENGLF_APIENTRY GLAPIENTRY
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef QOPENGLF_APIENTRYP
|
|
|
|
#define QOPENGLF_APIENTRYP GLAPIENTRYP
|
|
|
|
#endif
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2016-11-11 08:16:23 +00:00
|
|
|
typedef void (*resolveFuncPtr)();
|
2019-10-29 22:04:15 +00:00
|
|
|
void KWINGLUTILS_EXPORT glResolveFunctions(const std::function<resolveFuncPtr(const char*)> &resolveFunction);
|
2012-09-26 21:29:11 +00:00
|
|
|
|
2014-02-11 18:57:06 +00:00
|
|
|
// GL_ARB_robustness / GL_EXT_robustness
|
2015-11-17 10:00:53 +00:00
|
|
|
using glGetGraphicsResetStatus_func = GLenum (*)();
|
|
|
|
using glReadnPixels_func = void (*)(GLint x, GLint y, GLsizei width, GLsizei height,
|
2014-02-11 18:57:06 +00:00
|
|
|
GLenum format, GLenum type, GLsizei bufSize, GLvoid *data);
|
2015-11-17 10:00:53 +00:00
|
|
|
using glGetnUniformfv_func = void (*)(GLuint program, GLint location, GLsizei bufSize, GLfloat *params);
|
2013-05-19 14:17:41 +00:00
|
|
|
|
2015-11-17 10:00:53 +00:00
|
|
|
extern KWINGLUTILS_EXPORT glGetGraphicsResetStatus_func glGetGraphicsResetStatus;
|
|
|
|
extern KWINGLUTILS_EXPORT glReadnPixels_func glReadnPixels;
|
|
|
|
extern KWINGLUTILS_EXPORT glGetnUniformfv_func glGetnUniformfv;
|
2013-05-19 14:17:41 +00:00
|
|
|
|
2010-12-05 11:35:40 +00:00
|
|
|
} // namespace
|
|
|
|
|
2012-09-29 11:19:35 +00:00
|
|
|
#endif // KWIN_GLUTILS_FUNCS_H
|