]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/texturecube.h
Remove support for array size specialization from the engine as well
[libs/gl.git] / source / core / texturecube.h
index aa43c9da0a97ca084bd2690fd1f1e7b2dae35b13..eef377e34105742236e18e484d68f829825f27b6 100644 (file)
@@ -60,6 +60,8 @@ public:
        cannot be changed once set. */
        void storage(PixelFormat, unsigned size, unsigned lv = 0);
 
+       virtual void image(unsigned, const void *);
+
        /** Replaces contents of a single face.  Allocated storage must exist.  The
        image data is interpreted according to the storage format and must have size
        matching the selected mipmap level. */
@@ -68,7 +70,7 @@ public:
        /** Replaces a rectangular region of a face.  Allocated storage must exist.
        The image data is interpreted according to the storage format and the region
        must be fully inside the face. */
-       void sub_image(TextureCubeFace, unsigned level, int x, int y, unsigned w, unsigned h, const void *);
+       void sub_image(TextureCubeFace, unsigned level, unsigned x, unsigned y, unsigned w, unsigned h, const void *);
 
        void image(TextureCubeFace, const Graphics::Image &);