refactored RenderPolicy and OpenGL extensions initialization.

This commit is contained in:
rachytski 2011-11-26 16:28:57 +04:00 committed by Alex Zolotarev
parent 39401b7e18
commit c2616bbdb6
8 changed files with 92 additions and 78 deletions

View file

@ -71,19 +71,19 @@ namespace android
rmParams.m_videoMemoryLimit = 15 * 1024 * 1024;
rmParams.m_rtFormat = yg::Rt8Bpp;
RenderPolicy * renderPolicy = new PartialRenderPolicy(m_videoTimer,
true,
rmParams,
make_shared_ptr(new android::RenderContext()));
if (renderPolicy == 0)
try
{
LOG(LINFO, ("No Render Policy is created"));
m_work.SetRenderPolicy(CreateRenderPolicy(m_videoTimer,
true,
rmParams,
make_shared_ptr(new android::RenderContext())));
}
catch (yg::gl::platform_unsupported const & e)
{
LOG(LINFO, ("this android platform is unsupported, reason=", e.what()));
return false;
}
m_work.SetRenderPolicy(renderPolicy);
m_work.SetUpdatesEnabled(true);
LOG(LDEBUG, ("AF::InitRenderer 3"));

View file

@ -96,10 +96,11 @@
rmParams.m_videoMemoryLimit = GetPlatform().VideoMemoryLimit();
rmParams.m_rtFormat = fmt;
renderPolicy = CreateRenderPolicy(videoTimer, false, rmParams, renderContext);
// check for error
if (renderPolicy == 0)
try
{
renderPolicy = CreateRenderPolicy(videoTimer, false, rmParams, renderContext);
}
catch (yg::gl::platform_unsupported const & )
{
/// terminate program (though this situation is unreal :) )
}

View file

@ -135,36 +135,29 @@ RenderPolicy * CreateRenderPolicy(VideoTimer * videoTimer,
yg::ResourceManager::Params const & rmParams,
shared_ptr<yg::gl::RenderContext> const & primaryRC)
{
try
bool benchmarkingEnabled = false;
Settings::Get("IsBenchmarking", benchmarkingEnabled);
if (benchmarkingEnabled)
{
bool benchmarkingEnabled = false;
Settings::Get("IsBenchmarking", benchmarkingEnabled);
bool isBenchmarkingMT = false;
Settings::Get("IsBenchmarkingMT", isBenchmarkingMT);
if (benchmarkingEnabled)
{
bool isBenchmarkingMT = false;
Settings::Get("IsBenchmarkingMT", isBenchmarkingMT);
if (isBenchmarkingMT)
return new BenchmarkTilingRenderPolicyMT(videoTimer, useDefaultFB, rmParams, primaryRC);
else
return new BenchmarkRenderPolicyMT(videoTimer, useDefaultFB, rmParams, primaryRC);
}
if (isBenchmarkingMT)
return new BenchmarkTilingRenderPolicyMT(videoTimer, useDefaultFB, rmParams, primaryRC);
else
{
return new BenchmarkRenderPolicyMT(videoTimer, useDefaultFB, rmParams, primaryRC);
}
else
{
#ifdef OMIM_OS_ANDROID
return new PartialRenderPolicy(videoTimer, useDefaultFB, rmParams, primaryRC);
return new PartialRenderPolicy(videoTimer, useDefaultFB, rmParams, primaryRC);
#endif
#ifdef OMIM_OS_IPHONE
return new RenderPolicyMT(videoTimer, useDefaultFB, rmParams, primaryRC);
return new RenderPolicyMT(videoTimer, useDefaultFB, rmParams, primaryRC);
#endif
#ifdef OMIM_OS_DESKTOP
return new RenderPolicyMT(videoTimer, useDefaultFB, rmParams, primaryRC);
return new RenderPolicyMT(videoTimer, useDefaultFB, rmParams, primaryRC);
#endif
}
}
catch (yg::gl::platform_unsupported const &)
{
return 0;
}
}

View file

@ -195,10 +195,6 @@ namespace qt
void DrawWidget::initializeGL()
{
#ifdef OMIM_OS_WINDOWS
win32::InitOpenGL();
#endif
/// we'll perform swap by ourselves, see issue #333
setAutoBufferSwap(false);
@ -212,7 +208,15 @@ namespace qt
rmParams.m_rtFormat = yg::Rt8Bpp;
rmParams.m_videoMemoryLimit = GetPlatform().VideoMemoryLimit();
m_framework->SetRenderPolicy(CreateRenderPolicy(m_videoTimer.get(), true, rmParams, primaryRC));
try
{
m_framework->SetRenderPolicy(CreateRenderPolicy(m_videoTimer.get(), true, rmParams, primaryRC));
}
catch (yg::gl::platform_unsupported const & e)
{
LOG(LERROR, ("OpenGL platform is unsupported, reason: ", e.what()));
/// TODO: Show "Please Update Drivers" dialog and close the program.
}
m_isInitialized = true;
}

View file

@ -31,11 +31,12 @@ GLDrawWidget::~GLDrawWidget()
void GLDrawWidget::initializeGL()
{
#ifdef OMIM_OS_WINDOWS
win32::InitOpenGL();
#endif
if (!yg::gl::CheckExtensionSupport())
try
{
yg::gl::InitExtensions();
yg::gl::CheckExtensionSupport();
}
catch (yg::gl::platform_unsupported & e)
{
/// TODO: Show "Please Update Drivers" dialog and close the program.
}

View file

@ -12,6 +12,18 @@ namespace yg
{
namespace gl
{
platform_unsupported::platform_unsupported(char const * reason)
: m_reason(reason)
{}
platform_unsupported::~platform_unsupported() throw()
{}
char const * platform_unsupported::what() const throw()
{
return m_reason.c_str();
}
bool HasExtension(const char *name)
{
string allExtensions(reinterpret_cast<char const * >(glGetString(GL_EXTENSIONS)));
@ -69,8 +81,11 @@ namespace yg
void CheckExtensionSupport()
{
if (!(g_isFramebufferSupported && g_isRenderbufferSupported))
throw platform_unsupported();
if (!g_isFramebufferSupported)
throw platform_unsupported("no framebuffer support");
if (!g_isRenderbufferSupported)
throw platform_unsupported("no renderbuffer support");
}
void LogError(char const * err, my::SrcPoint const & srcPt)

View file

@ -33,6 +33,7 @@
#endif
#include "../../base/src_point.hpp"
#include "../../std/exception.hpp"
namespace yg
{
@ -107,7 +108,13 @@ namespace yg
/// @throws platform_unsupported - is the platform we are running on is unsupported.
void CheckExtensionSupport();
struct platform_unsupported{};
struct platform_unsupported : public exception
{
string m_reason;
const char * what() const throw();
platform_unsupported(char const * reason);
~platform_unsupported() throw();
};
void CheckError(my::SrcPoint const & srcPt);
void CheckEGLError(my::SrcPoint const & srcPt);

View file

@ -27,43 +27,36 @@ namespace yg
const int GL_WRITE_ONLY_MWM = GL_WRITE_ONLY;
void InitExtensions(bool once)
void InitExtensions()
{
static bool isInitialized = false;
DumpGLInformation();
if ((!once) || (!isInitialized))
{
DumpGLInformation();
g_isBufferObjectsSupported = HasExtension("GL_ARB_vertex_buffer_object")
|| HasExtension("GLX_ARB_vertex_buffer_object");
g_isBufferObjectsSupported = HasExtension("GL_ARB_vertex_buffer_object")
|| HasExtension("GLX_ARB_vertex_buffer_object");
glBindBufferFn = &glBindBuffer;
glGenBuffersFn = &glGenBuffers;
glBufferDataFn = &glBufferData;
glBufferSubDataFn = &glBufferSubData;
glDeleteBuffersFn = &glDeleteBuffers;
glMapBufferFn = &glMapBuffer;
glUnmapBufferFn = &glUnmapBuffer;
glBindBufferFn = &glBindBuffer;
glGenBuffersFn = &glGenBuffers;
glBufferDataFn = &glBufferData;
glBufferSubDataFn = &glBufferSubData;
glDeleteBuffersFn = &glDeleteBuffers;
glMapBufferFn = &glMapBuffer;
glUnmapBufferFn = &glUnmapBuffer;
g_isFramebufferSupported = HasExtension("GL_ARB_framebuffer_object");
g_isFramebufferSupported = HasExtension("GL_ARB_framebuffer_object");
glBindFramebufferFn = &glBindFramebufferEXT;
glFramebufferTexture2DFn = &glFramebufferTexture2DEXT;
glFramebufferRenderbufferFn = &glFramebufferRenderbufferEXT;
glGenFramebuffersFn = &glGenFramebuffersEXT;
glDeleteFramebuffersFn = &glDeleteFramebuffersEXT;
glCheckFramebufferStatusFn = &glCheckFramebufferStatusEXT;
glBindFramebufferFn = &glBindFramebufferEXT;
glFramebufferTexture2DFn = &glFramebufferTexture2DEXT;
glFramebufferRenderbufferFn = &glFramebufferRenderbufferEXT;
glGenFramebuffersFn = &glGenFramebuffersEXT;
glDeleteFramebuffersFn = &glDeleteFramebuffersEXT;
glCheckFramebufferStatusFn = &glCheckFramebufferStatusEXT;
g_isRenderbufferSupported = g_isFramebufferSupported;
g_isRenderbufferSupported = g_isFramebufferSupported;
glGenRenderbuffersFn = &glGenRenderbuffersEXT;
glDeleteRenderbuffersFn = &glDeleteRenderbuffersEXT;
glBindRenderbufferFn = &glBindRenderbufferEXT;
glRenderbufferStorageFn = &glRenderbufferStorageEXT;
isInitialized = true;
}
glGenRenderbuffersFn = &glGenRenderbuffersEXT;
glDeleteRenderbuffersFn = &glDeleteRenderbuffersEXT;
glBindRenderbufferFn = &glBindRenderbufferEXT;
glRenderbufferStorageFn = &glRenderbufferStorageEXT;
}
}
}