Fix compilation on iOS
The function is only used from inside the #ifndef ES2 blocks, causing it to fail compilation with a default configuration on iOS (where warnings are errors). Change-Id: I4f76c6371bd9125c7d1c919685df4a870eeb62f0 Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
This commit is contained in:
parent
0e20635c39
commit
eca1933bb7
@ -215,10 +215,12 @@ Q_LOGGING_CATEGORY(DBG_SHADER_CACHE, "qt.opengl.diskcache")
|
|||||||
#define GL_NUM_PROGRAM_BINARY_FORMATS 0x87FE
|
#define GL_NUM_PROGRAM_BINARY_FORMATS 0x87FE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef QT_OPENGL_ES_2
|
||||||
static inline bool isFormatGLES(const QSurfaceFormat &f)
|
static inline bool isFormatGLES(const QSurfaceFormat &f)
|
||||||
{
|
{
|
||||||
return (f.renderableType() == QSurfaceFormat::OpenGLES);
|
return (f.renderableType() == QSurfaceFormat::OpenGLES);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static inline bool supportsGeometry(const QSurfaceFormat &f)
|
static inline bool supportsGeometry(const QSurfaceFormat &f)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user