_evas_gl_common_viewport_set segv fix: ROUND 2!

SVN revision: 57561
This commit is contained in:
Mike Blumenkrantz 2011-03-08 01:00:21 +00:00
parent ccfe91cc58
commit 63638f7393
2 changed files with 5 additions and 0 deletions

View File

@ -135,3 +135,7 @@
2011-02-27 Vincent Torri
* Fixed static linking of the bmp, wbmp and tga loaders
2011-03-07 Mike Blumenkrantz
* Fix segv when trying to set gl viewpoint with NULL ctx

View File

@ -292,6 +292,7 @@ _evas_gl_common_viewport_set(Evas_GL_Context *gc)
GLfloat proj[16];
int w = 1, h = 1, m = 1, rot = 1, foc = 0;
EINA_SAFETY_ON_NULL_RETURN(gc);
foc = gc->foc;
// surface in pipe 0 will be the same as all pipes
if ((gc->pipe[0].shader.surface == gc->def_surface) ||