]> git.sesse.net Git - nageru/blobdiff - pbo_frame_allocator.cpp
Remove an unused member variable.
[nageru] / pbo_frame_allocator.cpp
index e6cce4e8f151dbbc42c1406fdc6ad4b8bae79411..e1106334be7fc7c209ae431f19260052e1444eee 100644 (file)
@@ -10,7 +10,7 @@
 using namespace std;
 
 PBOFrameAllocator::PBOFrameAllocator(size_t frame_size, GLuint width, GLuint height, size_t num_queued_frames, GLenum buffer, GLenum permissions, GLenum map_bits)
-        : frame_size(frame_size), buffer(buffer)
+        : buffer(buffer)
 {
        userdata.reset(new Userdata[num_queued_frames]);
        for (size_t i = 0; i < num_queued_frames; ++i) {