From 65cdd0f36678a6b77caf9cf0007ad44c51f7f7af Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 4 Jun 2019 14:42:31 -0500 Subject: Enable shader cache for ES2 when GL_OES_get_program_binary is present Change-Id: I4fb71471a7dd22441def1eb837857d245c3e3c5a Reviewed-by: Laszlo Agocs --- src/gui/opengl/qopenglprogrambinarycache_p.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/gui/opengl/qopenglprogrambinarycache_p.h') diff --git a/src/gui/opengl/qopenglprogrambinarycache_p.h b/src/gui/opengl/qopenglprogrambinarycache_p.h index a0e1f91e254..9fade08e66d 100644 --- a/src/gui/opengl/qopenglprogrambinarycache_p.h +++ b/src/gui/opengl/qopenglprogrambinarycache_p.h @@ -93,6 +93,12 @@ private: uint format; }; QCache m_memCache; +#if defined(QT_OPENGL_ES_2) + void (QOPENGLF_APIENTRYP programBinaryOES)(GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length); + void (QOPENGLF_APIENTRYP getProgramBinaryOES)(GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); + void initializeProgramBinaryOES(QOpenGLContext *context); + bool m_programBinaryOESInitialized = false; +#endif }; QT_END_NAMESPACE -- cgit v1.2.3