summaryrefslogtreecommitdiff
path: root/src/resources/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/image.h')
-rw-r--r--src/resources/image.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/resources/image.h b/src/resources/image.h
index bee60aab..c38677d8 100644
--- a/src/resources/image.h
+++ b/src/resources/image.h
@@ -64,11 +64,6 @@ class Image : public Resource
static Image *load(void* buffer, unsigned int bufferSize, int flags);
/**
- * Creates a new empty image with given height and width.
- */
- static Image *create(int width, int height);
-
- /**
* Frees the resources created by SDL.
*/
virtual void unload();
@@ -126,12 +121,6 @@ class Image : public Resource
*/
float getAlpha();
- /**
- * Fills the image with given color.
- */
- void fillWithColor(
- unsigned char red, unsigned char green, unsigned blue);
-
protected:
/**