Kaydet (Commit) 886e4edf authored tarafından Markus Mohrhard's avatar Markus Mohrhard

let us use OpenGL types for OpenGL resources

Change-Id: I53dbbfb2f1d721bdbb076fa7cb45801659694a14
üst d280b13b
......@@ -198,7 +198,7 @@ protected:
return (rBHelper.bDisposed || rBHelper.bInDispose);
}
void createTexture( unsigned int* texID,
void createTexture( GLuint* texID,
#if defined( GLX_EXT_texture_from_pixmap )
GLXPixmap pixmap,
bool usePixmap,
......@@ -232,10 +232,10 @@ private:
/** OpenGL handle to the leaving slide's texture
*/
unsigned int maLeavingSlideGL;
GLuint maLeavingSlideGL;
/** OpenGL handle to the entering slide's texture
*/
unsigned int maEnteringSlideGL;
GLuint maEnteringSlideGL;
Reference< presentation::XSlideShowView > mxView;
Reference< rendering::XIntegerBitmap > mxLeavingBitmap;
......@@ -561,7 +561,7 @@ void OGLTransitionerImpl::setTransition( boost::shared_ptr<OGLTransitionImpl> co
impl_prepareTransition();
}
void OGLTransitionerImpl::createTexture( unsigned int* texID,
void OGLTransitionerImpl::createTexture( GLuint* texID,
#if defined( GLX_EXT_texture_from_pixmap )
GLXPixmap pixmap,
bool usePixmap,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment