Sha256: 30df2ce4859028b1a807e264881647e4eabb0609d74f83b6e333d4cd2ab9f9d1
Contents?: true
Size: 536 Bytes
Versions: 24
Compression:
Stored size: 536 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __RAYS_SRC_RENDER_BUFFER_H__ #define __RAYS_SRC_RENDER_BUFFER_H__ #include <xot/pimpl.h> #include <rays/defs.h> #include "opengl.h" namespace Rays { class RenderBuffer { public: RenderBuffer (); RenderBuffer (int width, int height); ~RenderBuffer (); GLuint id () const; int width () const; int height () const; operator bool () const; bool operator ! () const; struct Data; Xot::PSharedImpl<Data> self; };// RenderBuffer }// Rays #endif//EOH
Version data entries
24 entries across 24 versions & 1 rubygems