summaryrefslogtreecommitdiff
path: root/plugingui/drawable.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2020-02-29 16:12:26 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2020-02-29 17:32:33 +0100
commit15e9d38d36573ba0e1ec6e0cc2768b12ca01bff0 (patch)
tree5bceab5dfb37941cbc055a978780ed0a777228e5 /plugingui/drawable.h
parentdf32a5c6a6f8e204a757f68f0a61ea6f4843c569 (diff)
WIP: Read images as uint8_t instead of float. Convert Colour and all colour related operations to use uint8_t instade of float and finally optimize rendering to render lines instead of single pixels.
Diffstat (limited to 'plugingui/drawable.h')
-rw-r--r--plugingui/drawable.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugingui/drawable.h b/plugingui/drawable.h
index ff9a4ff..e793a27 100644
--- a/plugingui/drawable.h
+++ b/plugingui/drawable.h
@@ -27,6 +27,7 @@
#pragma once
#include <cstdlib>
+#include <cstdint>
namespace GUI
{
@@ -42,6 +43,9 @@ public:
virtual std::size_t height() const = 0;
virtual const Colour& getPixel(std::size_t x, std::size_t y) const = 0;
+ virtual const std::uint8_t* line(std::size_t y) const = 0;
+
+ virtual bool hasAlpha() const = 0;
};
} // GUI::