mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2024-11-23 15:15:05 +00:00
Generate Sources of origin/master updated at Mon Oct 12 17:44:45 GMT 2015
This commit is contained in:
parent
fc0036b9b7
commit
0c3450e8db
@ -11525,10 +11525,23 @@ GLboolean glewParseArgs (int argc, char** argv, struct createParams *params)
|
|||||||
#if defined(GLEW_OSMESA)
|
#if defined(GLEW_OSMESA)
|
||||||
OSMesaContext ctx;
|
OSMesaContext ctx;
|
||||||
|
|
||||||
|
static const GLint osmFormat = GL_UNSIGNED_BYTE;
|
||||||
|
static const GLint osmWidth = 640;
|
||||||
|
static const GLint osmHeight = 480;
|
||||||
|
static GLubyte *osmPixels = NULL;
|
||||||
|
|
||||||
GLboolean glewCreateContext (struct createParams *params)
|
GLboolean glewCreateContext (struct createParams *params)
|
||||||
{
|
{
|
||||||
ctx = OSMesaCreateContext(OSMESA_RGBA, NULL);
|
ctx = OSMesaCreateContext(OSMESA_RGBA, NULL);
|
||||||
if (NULL == ctx) return GL_TRUE;
|
if (NULL == ctx) return GL_TRUE;
|
||||||
|
if (NULL == osmPixels)
|
||||||
|
{
|
||||||
|
osmPixels = (GLubyte *) calloc(osmWidth*osmHeight*4, 1);
|
||||||
|
}
|
||||||
|
if (!OSMesaMakeCurrent(ctx, osmPixels, GL_UNSIGNED_BYTE, osmWidth, osmHeight))
|
||||||
|
{
|
||||||
|
return GL_TRUE;
|
||||||
|
}
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user