forked from organicmaps/organicmaps
[note-3 fix] call glFlush only on iOS, where we has multithreaded opengl
This commit is contained in:
parent
cb09516a0f
commit
96ff181779
8 changed files with 23 additions and 5 deletions
|
@ -52,7 +52,7 @@ namespace graphics
|
|||
/// resource update made in one thread to the another thread is
|
||||
/// to call the glFlush in thread, which modifies resource and then rebind
|
||||
/// resource in another threads that is using this resource, if any.
|
||||
OGLCHECK(glFlush());
|
||||
OGLCHECK(glFlushFn());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -126,7 +126,7 @@ namespace graphics
|
|||
/// resource update made in one thread to the another thread is
|
||||
/// to call the glFlush in thread, which modifies resource and then rebind
|
||||
/// resource in another threads that is using this resource, if any.
|
||||
OGLCHECK(glFlush());
|
||||
OGLCHECK(glFlushFn());
|
||||
|
||||
static_cast<ManagedTexture*>(m_texture.get())->unlock();
|
||||
}
|
||||
|
@ -390,7 +390,7 @@ namespace graphics
|
|||
/// resource update made in one thread to the another thread is
|
||||
/// to call the glFlush in thread, which modifies resource and then rebind
|
||||
/// resource in another threads that is using this resource, if any.
|
||||
OGLCHECK(glFlush());
|
||||
OGLCHECK(glFlushFn());
|
||||
}
|
||||
else
|
||||
LOG(LDEBUG, ("no storage to unlock"));
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
// buffer objects extensions
|
||||
|
||||
DEFINE_GL_RPOC("glFlush", glFlushFn);
|
||||
DEFINE_GL_PROC("glActiveTexture", glActiveTextureFn)
|
||||
DEFINE_GL_PROC("glGetAttribLocation", glGetAttribLocationFn)
|
||||
DEFINE_GL_PROC("glGetActiveAttrib", glGetActiveAttribFn)
|
||||
|
|
|
@ -103,6 +103,7 @@ namespace graphics
|
|||
void (OPENGL_CALLING_CONVENTION * glLoadMatrixfFn) (const GLfloat *m);
|
||||
void (OPENGL_CALLING_CONVENTION * glOrthoFn) (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
|
||||
void (OPENGL_CALLING_CONVENTION * glDrawElementsFn) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
|
||||
void (OPENGL_CALLING_CONVENTION * glFlushFn)();
|
||||
|
||||
bool g_isBufferObjectsSupported = true;
|
||||
bool g_isMapBufferSupported = true;
|
||||
|
|
|
@ -85,6 +85,7 @@ namespace graphics
|
|||
|
||||
extern void (OPENGL_CALLING_CONVENTION * glOrthoFn) (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar);
|
||||
extern void (OPENGL_CALLING_CONVENTION * glDrawElementsFn) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
|
||||
extern void (OPENGL_CALLING_CONVENTION * glFlushFn)();
|
||||
|
||||
extern const GLenum GL_MODELVIEW_MWM;
|
||||
extern const GLenum GL_PROJECTION_MWM;
|
||||
|
|
|
@ -19,6 +19,14 @@ namespace graphics
|
|||
{
|
||||
namespace gl
|
||||
{
|
||||
|
||||
#ifndef OMIM_OS_IPHONE
|
||||
namespace
|
||||
{
|
||||
void emptyFlushFn() {}
|
||||
}
|
||||
#endif
|
||||
|
||||
const int GL_FRAMEBUFFER_BINDING_MWM = GL_FRAMEBUFFER_BINDING;
|
||||
const int GL_FRAMEBUFFER_MWM = GL_FRAMEBUFFER;
|
||||
const int GL_FRAMEBUFFER_UNSUPPORTED_MWM = GL_FRAMEBUFFER_UNSUPPORTED;
|
||||
|
@ -59,6 +67,12 @@ namespace graphics
|
|||
glUnmapBufferFn = &glUnmapBufferOES;
|
||||
#endif
|
||||
|
||||
#ifdef OMIM_OS_IPHONE
|
||||
glFlushFn = &glFlush;
|
||||
#else
|
||||
glFlushFn = &emptyFlushFn;
|
||||
#endif
|
||||
|
||||
g_isFramebufferSupported = true;
|
||||
|
||||
glBindFramebufferFn = &glBindFramebuffer;
|
||||
|
|
|
@ -63,6 +63,7 @@ namespace graphics
|
|||
g_isSeparateBlendFuncSupported = HasExtension("GL_EXT_blend_func_separate");
|
||||
|
||||
glBlendFuncSeparateFn = &glBlendFuncSeparateEXT;
|
||||
glFlushFn = &glFlush;
|
||||
|
||||
glActiveTextureFn = &glActiveTexture;
|
||||
glGetAttribLocationFn = &glGetAttribLocation;
|
||||
|
|
|
@ -59,7 +59,7 @@ namespace graphics
|
|||
/// resource update made in one thread to the another thread is
|
||||
/// to call the glFlush in thread, which modifies resource and then rebind
|
||||
/// resource in another threads that is using this resource, if any.
|
||||
OGLCHECK(glFlush());
|
||||
OGLCHECK(glFlushFn());
|
||||
|
||||
}
|
||||
|
||||
|
@ -238,7 +238,7 @@ namespace graphics
|
|||
/// resource update made in one thread to the another thread is
|
||||
/// to call the glFlush in thread, which modifies resource and then rebind
|
||||
/// resource in another threads that is using this resource, if any.
|
||||
OGLCHECK(glFlush());
|
||||
OGLCHECK(glFlushFn());
|
||||
}
|
||||
|
||||
template <typename Traits>
|
||||
|
|
Loading…
Add table
Reference in a new issue