]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texture2d.h
Get rid of the typedefs for fundamental types
[libs/gl.git] / source / texture2d.h
index 5784645b03356d5baebc2ecb75c4e17585a34472..012718528af72592039831c2a27c69b6a58aa728 100644 (file)
@@ -10,6 +10,7 @@ Distributed under the LGPL
 
 #include <string>
 #include <msp/gbase/image.h>
+#include "datatype.h"
 #include "pixelformat.h"
 #include "texture.h"
 
@@ -34,8 +35,8 @@ public:
 
 private:
        PixelFormat ifmt;
-       sizei width;
-       sizei height;
+       unsigned width;
+       unsigned height;
        int border;
 
 public:
@@ -45,7 +46,7 @@ public:
        Defines the texture storage.  This function may only be successfully called
        once.
        */
-       void storage(PixelFormat fmt, sizei wd, sizei ht, int brd);
+       void storage(PixelFormat fmt, unsigned wd, unsigned ht, int brd);
        
        /**
        Uploads an image to the texture.  storage() must have been called prior to
@@ -58,7 +59,7 @@ public:
        Uploads a sub-image into the texture.  Unlike full image upload, there are
        no constraints on the size of the sub-image.
        */
-       void sub_image(int level, int x, int y, sizei wd, sizei ht, PixelFormat fmt, DataType type, const void *data);
+       void sub_image(int level, int x, int y, unsigned wd, unsigned ht, PixelFormat fmt, DataType type, const void *data);
 
        /**
        Loads an image from a file and uploads it to the texture.  If storage() has
@@ -66,8 +67,8 @@ public:
        */
        void load_image(const std::string &fn);
 
-       sizei get_width() const  { return width; }
-       sizei get_height() const { return height; }
+       unsigned get_width() const  { return width; }
+       unsigned get_height() const { return height; }
 
 private:
        void image(const Graphics::Image &);