aboutsummaryrefslogtreecommitdiff
path: root/drivers/pvr/Bitmap.h
diff options
context:
space:
mode:
authorRémi Verschelde2016-10-11 20:44:26 +0200
committerRémi Verschelde2016-10-15 11:50:39 +0200
commitb1e8889d969f5f88539c47c2afac6c9ea2a2dc11 (patch)
treee5d3cec5db3c03d59f257ee94ecbefa48956a602 /drivers/pvr/Bitmap.h
parentc31ad71f10f68705a456b4257c084d4008c34370 (diff)
downloadgodot-b1e8889d969f5f88539c47c2afac6c9ea2a2dc11.tar.gz
godot-b1e8889d969f5f88539c47c2afac6c9ea2a2dc11.tar.zst
godot-b1e8889d969f5f88539c47c2afac6c9ea2a2dc11.zip
dds/etc1/pbm/pvr: Make those modules and split thirdparty files
They are not particularly packaged in Linux distros so we do not facilitate unbundling via SCons. There could be done if/when there is interest. Also s/pnm/pbm/, long-lived typo :)
Diffstat (limited to 'drivers/pvr/Bitmap.h')
-rw-r--r--drivers/pvr/Bitmap.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/drivers/pvr/Bitmap.h b/drivers/pvr/Bitmap.h
deleted file mode 100644
index 508ed8cb7..000000000
--- a/drivers/pvr/Bitmap.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#pragma once
-
-#include "Point2.h"
-
-namespace Javelin {
-
-class Bitmap {
-public:
- int width;
- int height;
- unsigned char *data;
-
- Bitmap(int w, int h, int bytesPerPixel)
- : width(w)
- , height(h)
- , data(new unsigned char[width * height * bytesPerPixel]) {
- }
-
- virtual ~Bitmap() {
- delete [] data;
- }
-
- Point2<int> GetSize() const { return Point2<int>(width, height); }
-
- int GetArea() const { return width * height; }
-
- int GetBitmapWidth() const { return width; }
-
- int GetBitmapHeight() const { return height; }
-
- const unsigned char *GetRawData() const { return data; }
-};
-
-}