From 31c20197e585bee0d48a7643bf73a0b358ad6297 Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Wed, 22 Jan 2003 02:51:33 +0000 Subject: added "pixel32" typedef for 32bit rgb data added a single gradient texture type (vertical) --- otk/truerendercontrol.hh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'otk/truerendercontrol.hh') diff --git a/otk/truerendercontrol.hh b/otk/truerendercontrol.hh index b85a7cc2..e4975aeb 100644 --- a/otk/truerendercontrol.hh +++ b/otk/truerendercontrol.hh @@ -4,10 +4,28 @@ #include "rendercontrol.hh" +extern "C" { + +#ifdef HAVE_STDINT_H +# include +#else +# ifdef HAVE_SYS_TYPES_H +# include +# endif +#endif + +} + #include namespace otk { +#ifdef HAVE_STDINT_H +typedef uint32_t pixel32; +#else +typedef u_int32_t pixel32; +#endif + class TrueRenderControl : public RenderControl { private: // the number of bits to shift a color value (from 0-255) to the right, to @@ -26,6 +44,8 @@ public: virtual ~TrueRenderControl(); virtual void drawBackground(Surface& sf, const RenderTexture &texture) const; + virtual void drawGradientBackground(Surface &sf, + const RenderTexture &texture) const; }; } -- cgit v1.2.3