]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/texture1d.h
Use standard fixed-size integer types
[libs/gl.git] / source / core / texture1d.h
index 09d805e7869f8afd2819596bab336a8db23389a8..225cb0de2ec9f32e3f90fb2a74d818b546426090 100644 (file)
@@ -36,13 +36,7 @@ public:
        { storage(make_pixelformat(c, UNSIGNED_BYTE), w, l); }
 
        void allocate(unsigned);
-private:
-       void allocate_(unsigned);
-public:
        void image(unsigned, const void *);
-private:
-       void image_(unsigned, const void *);
-public:
        DEPRECATED void image(unsigned, PixelComponents, DataType, const void *);
        void sub_image(unsigned, int, unsigned, const void *);
        DEPRECATED void sub_image(unsigned, int, unsigned, PixelComponents, DataType, const void *);
@@ -56,7 +50,7 @@ private:
 
 public:
        virtual AsyncLoader *load(IO::Seekable &, const Resources * = 0) { return 0; }
-       virtual UInt64 get_data_size() const;
+       virtual std::uint64_t get_data_size() const;
        virtual void unload() { }
 };