src/frame_buffer.h in rays-0.1.12 vs src/frame_buffer.h in rays-0.1.13
- old
+ new
@@ -4,11 +4,11 @@
#define __RAYS_SRC_FRAME_BUFFER_H__
#include <xot/pimpl.h>
#include <rays/defs.h>
-#include <rays/opengl.h>
+#include "opengl.h"
namespace Rays
{
@@ -43,11 +43,11 @@
bool operator ! () const;
struct Data;
- Xot::PImpl<Data, true> self;
+ Xot::PSharedImpl<Data> self;
};// FrameBuffer
class FrameBufferBinder
@@ -66,12 +66,12 @@
GLuint id;
};// FrameBufferBinder
- void bind_frame_buffer (GLuint id);
+ void FrameBuffer_bind (GLuint id);
- void unbind_frame_buffer ();
+ void FrameBuffer_unbind ();
}// Rays