Interface
CoglScanoutBuffer
Prerequisite
In order to implement ScanoutBuffer, your type must inherit fromGObject.
Interface structure
struct CoglScanoutBufferInterface {
  GTypeInterface parent_iface;
  gboolean (* blit_to_framebuffer) (
    CoglScanout* scanout,
    CoglFramebuffer* framebuffer,
    int x,
    int y,
    GError** error
  );
  int (* get_width) (
    CoglScanoutBuffer* scanout_buffer
  );
  int (* get_height) (
    CoglScanoutBuffer* scanout_buffer
  );
  
}No description available.
Interface members
| parent_iface |  | 
| No description available. | |
| blit_to_framebuffer |  | 
| No description available. | |
| get_width |  | 
| No description available. | |
| get_height |  | 
| No description available. |