]> git.tdb.fi Git - libs/gl.git/blobdiff - source/bufferable.h
Store a Transform in keyframes instead of a Matrix
[libs/gl.git] / source / bufferable.h
index d7d7e45fe2183fa606395bda73f184a1f3ace282..a88f7b07a719535d426e262157fc8ef10879bd80 100644 (file)
@@ -14,6 +14,21 @@ uploading fresh data to the buffer.
 */
 class Bufferable
 {
+public:
+       class AsyncUpdater
+       {
+       private:
+               const Bufferable &bufferable;
+               char *mapped_address;
+               bool buffer_resized;
+
+       public:
+               AsyncUpdater(const Bufferable &);
+               ~AsyncUpdater();
+
+               void upload_data();
+       };
+
 private:
        Buffer *buffer;
        unsigned offset;
@@ -22,7 +37,6 @@ private:
 protected:
        mutable bool dirty;
 
-protected:
        Bufferable();
 public:
        virtual ~Bufferable();
@@ -34,6 +48,8 @@ public:
        /** Uploads new data into the buffer if necessary. */
        void refresh() const { if(dirty) update_buffer(); }
 
+       AsyncUpdater *refresh_async() const;
+
 private:
        void unlink_from_buffer();
 
@@ -69,8 +85,9 @@ protected:
        /** Resizes the buffer if necessary and calls upload_data(). */
        void update_buffer() const;
 
-       /** Uploads data to the buffer. */
-       virtual void upload_data() const;
+       /** Uploads data to the buffer.  Receives pointer to mapped buffer memory as
+       parameter.  If null, buffer interface should be used instead. */
+       virtual void upload_data(char *) const;
 };
 
 } // namespace GL