Sha256: e56d8c81941f3ef31a7fc209e56d7184486a320bb1c66b642a8bc490aa63b5a5
Contents?: true
Size: 536 Bytes
Versions: 17
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
17 entries across 17 versions & 1 rubygems