]> Dogcows Code - chaz/openbox/blobdiff - otk/rendertest.cc
dont clean up nulls
[chaz/openbox] / otk / rendertest.cc
index ce0bb1447906e56551c4946f9db796ac18d581be..b3a03a03b9b53c50f55b09aa0b42fec50e1e94cf 100644 (file)
@@ -1,9 +1,14 @@
+#include "config.h"
+
 #include "otk.hh"
 #include "rendercontrol.hh"
 #include "rendertexture.hh"
 
-#include <stdio.h>
+extern "C" {
 #include <X11/Xlib.h>
+}
+
+#include <cstdio>
 
 int main(int argc, char **argv)
 {
@@ -13,16 +18,18 @@ int main(int argc, char **argv)
   otk::AppWidget foo(&app);
   foo.resize(600, 500);
 
-  otk::RenderColor color(0, 0, 0xff, 0xff);
+  otk::RenderColor color(0, 0x96, 0xba, 0x86);
+  otk::RenderColor color2(0, 0x5a, 0x72, 0x4c);
   otk::RenderColor colord(0, 0, 0, 0);
   otk::RenderColor colorl(0, 0xff, 0xff, 0xff);
   otk::RenderTexture tex(false,
                         otk::RenderTexture::Raised,
                         otk::RenderTexture::Bevel1,
                         false,
-                        otk::RenderTexture::Solid,
+                        otk::RenderTexture::Vertical,
                         false,
                         &color,
+                         &color2,
                         &colord,
                         &colorl,
                         0,
This page took 0.024899 seconds and 4 git commands to generate.