summaryrefslogtreecommitdiffstats
path: root/tests/auto/qpainter/drawLine_rop_bitmap
diff options
context:
space:
mode:
authorQt by Nokia <qt-info@nokia.com>2011-04-27 12:05:43 +0200
committeraxis <qt-info@nokia.com>2011-04-27 12:05:43 +0200
commit38be0d13830efd2d98281c645c3a60afe05ffece (patch)
tree6ea73f3ec77f7d153333779883e8120f82820abe /tests/auto/qpainter/drawLine_rop_bitmap
Initial import from the monolithic Qt.
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
Diffstat (limited to 'tests/auto/qpainter/drawLine_rop_bitmap')
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/dst.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_AndNotROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_AndROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_ClearROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_CopyROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_NandROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_NopROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_NorROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotAndROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotCopyROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotOrROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotXorROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_OrNotROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_OrROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_SetROP.xbm6
-rw-r--r--tests/auto/qpainter/drawLine_rop_bitmap/res/res_XorROP.xbm6
17 files changed, 102 insertions, 0 deletions
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/dst.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/dst.xbm
new file mode 100644
index 0000000000..e645a0b86b
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/dst.xbm
@@ -0,0 +1,6 @@
+#define dst_width 8
+#define dst_height 8
+static char dst_bits[] = {
+ 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x00,0x00,0x00,0x30,0x00,0x30,0x00,
+ 0x11,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x10,0x00,0x00,
+ 0x00,0x11 };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_AndNotROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_AndNotROP.xbm
new file mode 100644
index 0000000000..303c799264
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_AndNotROP.xbm
@@ -0,0 +1,6 @@
+#define res_AndNotROP_width 8
+#define res_AndNotROP_height 8
+static char res_AndNotROP_bits[] = {
+ 0xf0,0xf0,0xcc,0xcc,0xc0,0xc0,0xf0,0xf0,0x00,0x00,0x00,0xff,0xff,0xff,0x7f,
+ 0xff,0xff,0xff,0x7f,0x50,0x00,0x00,0x00,0x09,0x02,0x00,0x00,0xff,0xff,0xff,
+ 0x7f,0xff };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_AndROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_AndROP.xbm
new file mode 100644
index 0000000000..31333de879
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_AndROP.xbm
@@ -0,0 +1,6 @@
+#define res_AndROP_width 8
+#define res_AndROP_height 8
+static char res_AndROP_bits[] = {
+ 0xf0,0xf0,0xf0,0xf0,0xc0,0xc0,0xf0,0xf0,0x00,0x00,0x00,0xff,0xff,0xff,0x7f,
+ 0xff,0xff,0xff,0x7f,0x50,0x00,0x00,0x00,0x09,0x02,0x00,0x00,0xff,0xff,0xff,
+ 0x7f,0xff };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_ClearROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_ClearROP.xbm
new file mode 100644
index 0000000000..9cc25ea147
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_ClearROP.xbm
@@ -0,0 +1,6 @@
+#define res_ClearROP_width 8
+#define res_ClearROP_height 8
+static char res_ClearROP_bits[] = {
+ 0xf0,0xf0,0xc0,0xc0,0xc0,0xc0,0xf0,0xf0,0x00,0x00,0x00,0xff,0xff,0xff,0x7f,
+ 0xff,0xff,0xff,0x7f,0x50,0x00,0x00,0x00,0x09,0x02,0x00,0x00,0xff,0xff,0xff,
+ 0x7f,0xff };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_CopyROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_CopyROP.xbm
new file mode 100644
index 0000000000..869844dcee
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_CopyROP.xbm
@@ -0,0 +1,6 @@
+#define res_CopyROP_width 8
+#define res_CopyROP_height 8
+static char res_CopyROP_bits[] = {
+ 0xf0,0xf0,0xfc,0xfc,0xc0,0xc0,0xf0,0xf0,0x00,0x00,0x00,0x35,0x00,0x5a,0x00,
+ 0x41,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xc0,0x5b,0x2f,
+ 0x2b,0x50 };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NandROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NandROP.xbm
new file mode 100644
index 0000000000..d058484fa8
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NandROP.xbm
@@ -0,0 +1,6 @@
+#define res_NandROP_width 8
+#define res_NandROP_height 8
+static char res_NandROP_bits[] = {
+ 0xf0,0xf0,0xcc,0xcc,0xfc,0xfc,0xf0,0xf0,0x00,0x00,0x00,0x62,0x00,0x6d,0x00,
+ 0x00,0xb5,0x7a,0x2b,0x50,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0x42,0x55,0x53,
+ 0x59,0x3a };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NopROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NopROP.xbm
new file mode 100644
index 0000000000..3a2bc23468
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NopROP.xbm
@@ -0,0 +1,6 @@
+#define res_NopROP_width 8
+#define res_NopROP_height 8
+static char res_NopROP_bits[] = {
+ 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x00,0x00,0x00,0xff,0xff,0xff,0x7f,
+ 0xff,0xff,0xff,0x7f,0x50,0x00,0x00,0x00,0x09,0x02,0x00,0x00,0xff,0xff,0xff,
+ 0x7f,0xff };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NorROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NorROP.xbm
new file mode 100644
index 0000000000..c74be41bbd
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NorROP.xbm
@@ -0,0 +1,6 @@
+#define res_NorROP_width 8
+#define res_NorROP_height 8
+static char res_NorROP_bits[] = {
+ 0xf0,0xf0,0xc0,0xc0,0xcc,0xcc,0xf0,0xf0,0x00,0x00,0x00,0x62,0x00,0x6d,0x00,
+ 0x00,0xb5,0x7a,0x2b,0x50,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0x42,0x55,0x53,
+ 0x59,0x3a };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotAndROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotAndROP.xbm
new file mode 100644
index 0000000000..0cf8c3a82c
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotAndROP.xbm
@@ -0,0 +1,6 @@
+#define res_NotAndROP_width 8
+#define res_NotAndROP_height 8
+static char res_NotAndROP_bits[] = {
+ 0xf0,0xf0,0xc0,0xc0,0xf0,0xf0,0xf0,0xf0,0x00,0x00,0x00,0xff,0xff,0xff,0x7f,
+ 0xff,0xff,0xff,0x7f,0x50,0x00,0x00,0x00,0x09,0x02,0x00,0x00,0xff,0xff,0xff,
+ 0x7f,0xff };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotCopyROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotCopyROP.xbm
new file mode 100644
index 0000000000..65474e16c5
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotCopyROP.xbm
@@ -0,0 +1,6 @@
+#define res_NotCopyROP_width 8
+#define res_NotCopyROP_height 8
+static char res_NotCopyROP_bits[] = {
+ 0xf0,0xf0,0xc0,0xc0,0xfc,0xfc,0xf0,0xf0,0x00,0x00,0x00,0xff,0xff,0xff,0x7f,
+ 0xff,0xff,0xff,0x7f,0x50,0x00,0x00,0x00,0x09,0x02,0x00,0x00,0xff,0xff,0xff,
+ 0x7f,0xff };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotOrROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotOrROP.xbm
new file mode 100644
index 0000000000..144d8995b6
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotOrROP.xbm
@@ -0,0 +1,6 @@
+#define res_NotOrROP_width 8
+#define res_NotOrROP_height 8
+static char res_NotOrROP_bits[] = {
+ 0xf0,0xf0,0xf0,0xf0,0xfc,0xfc,0xf0,0xf0,0x00,0x00,0x00,0xff,0xff,0xff,0x7f,
+ 0xff,0xff,0xff,0x7f,0x50,0x00,0x00,0x00,0x09,0x02,0x00,0x00,0xff,0xff,0xff,
+ 0x7f,0xff };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotROP.xbm
new file mode 100644
index 0000000000..ccb3d36fb4
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotROP.xbm
@@ -0,0 +1,6 @@
+#define res_NotROP_width 8
+#define res_NotROP_height 8
+static char res_NotROP_bits[] = {
+ 0xf0,0xf0,0xcc,0xcc,0xcc,0xcc,0xf0,0xf0,0x00,0x00,0x00,0x62,0x00,0x6d,0x00,
+ 0x00,0xb5,0x7a,0x2b,0x50,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0x42,0x55,0x53,
+ 0x59,0x3a };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotXorROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotXorROP.xbm
new file mode 100644
index 0000000000..4be8f51a80
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_NotXorROP.xbm
@@ -0,0 +1,6 @@
+#define res_NotXorROP_width 8
+#define res_NotXorROP_height 8
+static char res_NotXorROP_bits[] = {
+ 0xf0,0xf0,0xf0,0xf0,0xcc,0xcc,0xf0,0xf0,0x00,0x00,0x00,0x62,0x00,0x6d,0x00,
+ 0x00,0xb5,0x7a,0x2b,0x50,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0x42,0x55,0x53,
+ 0x59,0x3a };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_OrNotROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_OrNotROP.xbm
new file mode 100644
index 0000000000..d53fbe00e1
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_OrNotROP.xbm
@@ -0,0 +1,6 @@
+#define res_OrNotROP_width 8
+#define res_OrNotROP_height 8
+static char res_OrNotROP_bits[] = {
+ 0xf0,0xf0,0xfc,0xfc,0xcc,0xcc,0xf0,0xf0,0x00,0x00,0x00,0x62,0x00,0x6d,0x00,
+ 0x00,0xb5,0x7a,0x2b,0x50,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0x42,0x55,0x53,
+ 0x59,0x3a };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_OrROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_OrROP.xbm
new file mode 100644
index 0000000000..06b51fcc68
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_OrROP.xbm
@@ -0,0 +1,6 @@
+#define res_OrROP_width 8
+#define res_OrROP_height 8
+static char res_OrROP_bits[] = {
+ 0xf0,0xf0,0xfc,0xfc,0xf0,0xf0,0xf0,0xf0,0x00,0x00,0x00,0xff,0xff,0xff,0x7f,
+ 0xff,0xff,0xff,0x7f,0x50,0x00,0x00,0x00,0x09,0x02,0x00,0x00,0xff,0xff,0xff,
+ 0x7f,0xff };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_SetROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_SetROP.xbm
new file mode 100644
index 0000000000..ab42472bb0
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_SetROP.xbm
@@ -0,0 +1,6 @@
+#define res_SetROP_width 8
+#define res_SetROP_height 8
+static char res_SetROP_bits[] = {
+ 0xf0,0xf0,0xfc,0xfc,0xfc,0xfc,0xf0,0xf0,0x00,0x00,0x00,0x62,0x00,0x6d,0x00,
+ 0x00,0xb5,0x7a,0x2b,0x50,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0x42,0x55,0x53,
+ 0x59,0x3a };
diff --git a/tests/auto/qpainter/drawLine_rop_bitmap/res/res_XorROP.xbm b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_XorROP.xbm
new file mode 100644
index 0000000000..5ac892dd0b
--- /dev/null
+++ b/tests/auto/qpainter/drawLine_rop_bitmap/res/res_XorROP.xbm
@@ -0,0 +1,6 @@
+#define res_XorROP_width 8
+#define res_XorROP_height 8
+static char res_XorROP_bits[] = {
+ 0xf0,0xf0,0xcc,0xcc,0xf0,0xf0,0xf0,0xf0,0x00,0x00,0x00,0x62,0x00,0x6d,0x00,
+ 0x00,0xb5,0x7a,0x2b,0x50,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0x42,0x55,0x53,
+ 0x59,0x3a };