]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/bufferable.h
Move Bufferable::refresh_async's definition to the header
[libs/gl.git] / source / core / bufferable.h
index b1d991fca5218cfd4a0cd1e7ee554d2920a02463..f1d52fb3ee514602d9452882518cc23fc5bc6c16 100644 (file)
@@ -57,7 +57,7 @@ public:
 
        /** Returns an object which can be used to upload data to the buffer using
        mapped memory. */
-       AsyncUpdater *refresh_async() const;
+       AsyncUpdater *refresh_async() const { return dirty ? new AsyncUpdater(*this) : 0; }
 
 private:
        void unlink_from_buffer();
@@ -87,9 +87,6 @@ public:
        unsigned get_offset() const { return offset; }
 
 private:
-       /** Called when the target buffer or offset within it has changed. */
-       virtual void location_changed(Buffer *, unsigned, unsigned) const { }
-
        /** Uploads data to the buffer.  Receives pointer to mapped buffer memory as
        parameter, or null to use the buffer upload interface. */
        void upload_data(char *) const;