openMSX
Public Member Functions | List of all members
openmsx::PixelBuffer< T > Class Template Reference

Wrapper around a pixel buffer. More...

#include <GLUtil.hh>

Inheritance diagram for openmsx::PixelBuffer< T >:
Inheritance graph
[legend]

Public Member Functions

 PixelBuffer ()
 
 PixelBuffer (PixelBuffer &&other)
 
PixelBufferoperator= (PixelBuffer &&other)
 
 ~PixelBuffer ()
 
bool openGLSupported () const
 Are PBOs supported by this openGL implementation? This class implements a SW fallback in case PBOs are not directly supported by this openGL implementation, but it will probably be a lot slower. More...
 
void setImage (GLuint width, GLuint height)
 Sets the image for this buffer. More...
 
void bind () const
 Bind this PixelBuffer. More...
 
void unbind () const
 Unbind this buffer. More...
 
T * getOffset (GLuint x, GLuint y)
 Gets a pointer relative to the start of this buffer. More...
 
T * mapWrite ()
 Maps the contents of this buffer into memory. More...
 
void unmap () const
 Unmaps the contents of this buffer. More...
 

Detailed Description

template<typename T>
class openmsx::PixelBuffer< T >

Wrapper around a pixel buffer.

The pixel buffer will be allocated in VRAM if possible, in main RAM otherwise. The pixel type is templatized T.

Definition at line 195 of file GLUtil.hh.

Constructor & Destructor Documentation

template<typename T >
openmsx::PixelBuffer< T >::PixelBuffer ( )

Definition at line 271 of file GLUtil.hh.

References openmsx::PixelBuffers::enabled.

template<typename T >
openmsx::PixelBuffer< T >::PixelBuffer ( PixelBuffer< T > &&  other)

Definition at line 282 of file GLUtil.hh.

template<typename T >
openmsx::PixelBuffer< T >::~PixelBuffer ( )

Definition at line 302 of file GLUtil.hh.

Member Function Documentation

template<typename T >
void openmsx::PixelBuffer< T >::bind ( ) const

Bind this PixelBuffer.

Must be called before the methods getOffset() or mapWrite() are used. (Is a wrapper around glBindBuffer).

Definition at line 332 of file GLUtil.hh.

Referenced by openmsx::GLHQLiteScaler::uploadBlock(), and openmsx::GLHQScaler::uploadBlock().

template<typename T >
T * openmsx::PixelBuffer< T >::getOffset ( GLuint  x,
GLuint  y 
)

Gets a pointer relative to the start of this buffer.

You must not dereference this pointer, but you can pass it to glTexImage etc when this buffer is bound as the source.

Precondition
This PixelBuffer must be bound (see bind()) before calling this method.

Definition at line 348 of file GLUtil.hh.

Referenced by openmsx::GLHQLiteScaler::uploadBlock(), and openmsx::GLHQScaler::uploadBlock().

template<typename T >
T * openmsx::PixelBuffer< T >::mapWrite ( )

Maps the contents of this buffer into memory.

The returned buffer is write-only (reading could be very slow or even result in a segfault).

Returns
Pointer through which you can write pixels to this buffer, or 0 if the buffer could not be mapped.
Precondition
This PixelBuffer must be bound (see bind()) before calling this method.

Definition at line 361 of file GLUtil.hh.

Referenced by openmsx::GLHQLiteScaler::uploadBlock(), and openmsx::GLHQScaler::uploadBlock().

template<typename T >
bool openmsx::PixelBuffer< T >::openGLSupported ( ) const

Are PBOs supported by this openGL implementation? This class implements a SW fallback in case PBOs are not directly supported by this openGL implementation, but it will probably be a lot slower.

Definition at line 308 of file GLUtil.hh.

template<typename T >
PixelBuffer< T > & openmsx::PixelBuffer< T >::operator= ( PixelBuffer< T > &&  other)

Definition at line 292 of file GLUtil.hh.

template<typename T >
void openmsx::PixelBuffer< T >::setImage ( GLuint  width,
GLuint  height 
)

Sets the image for this buffer.

TODO: Actually, only image size for now; later, if we need it, image data too.

Definition at line 314 of file GLUtil.hh.

Referenced by openmsx::GLHQLiteScaler::GLHQLiteScaler(), and openmsx::GLHQScaler::GLHQScaler().

template<typename T >
void openmsx::PixelBuffer< T >::unbind ( ) const

Unbind this buffer.

Definition at line 340 of file GLUtil.hh.

Referenced by openmsx::GLHQLiteScaler::uploadBlock(), and openmsx::GLHQScaler::uploadBlock().

template<typename T >
void openmsx::PixelBuffer< T >::unmap ( ) const

Unmaps the contents of this buffer.

After this call, you must no longer use the pointer returned by mapWrite.

Definition at line 372 of file GLUtil.hh.

Referenced by openmsx::GLHQLiteScaler::uploadBlock(), and openmsx::GLHQScaler::uploadBlock().


The documentation for this class was generated from the following file: