summaryrefslogtreecommitdiffstats
path: root/qemu/pixman/demos/conical-test.c
diff options
context:
space:
mode:
authorRajithaY <rajithax.yerrumsetty@intel.com>2017-04-25 03:31:15 -0700
committerRajitha Yerrumchetty <rajithax.yerrumsetty@intel.com>2017-05-22 06:48:08 +0000
commitbb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch)
treeca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/pixman/demos/conical-test.c
parenta14b48d18a9ed03ec191cf16b162206998a895ce (diff)
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to kvmfornfv repo and make use of the updated latest qemu for the execution of all testcase Change-Id: I1280af507a857675c7f81d30c95255635667bdd7 Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/pixman/demos/conical-test.c')
-rw-r--r--qemu/pixman/demos/conical-test.c100
1 files changed, 0 insertions, 100 deletions
diff --git a/qemu/pixman/demos/conical-test.c b/qemu/pixman/demos/conical-test.c
deleted file mode 100644
index 6b3243016..000000000
--- a/qemu/pixman/demos/conical-test.c
+++ /dev/null
@@ -1,100 +0,0 @@
-#include "../test/utils.h"
-#include "gtk-utils.h"
-
-#define SIZE 128
-#define GRADIENTS_PER_ROW 7
-#define NUM_ROWS ((NUM_GRADIENTS + GRADIENTS_PER_ROW - 1) / GRADIENTS_PER_ROW)
-#define WIDTH (SIZE * GRADIENTS_PER_ROW)
-#define HEIGHT (SIZE * NUM_ROWS)
-#define NUM_GRADIENTS 35
-
-#define double_to_color(x) \
- (((uint32_t) ((x)*65536)) - (((uint32_t) ((x)*65536)) >> 16))
-
-#define PIXMAN_STOP(offset,r,g,b,a) \
- { pixman_double_to_fixed (offset), \
- { \
- double_to_color (r), \
- double_to_color (g), \
- double_to_color (b), \
- double_to_color (a) \
- } \
- }
-
-
-static const pixman_gradient_stop_t stops[] = {
- PIXMAN_STOP (0.25, 1, 0, 0, 0.7),
- PIXMAN_STOP (0.5, 1, 1, 0, 0.7),
- PIXMAN_STOP (0.75, 0, 1, 0, 0.7),
- PIXMAN_STOP (1.0, 0, 0, 1, 0.7)
-};
-
-#define NUM_STOPS (sizeof (stops) / sizeof (stops[0]))
-
-static pixman_image_t *
-create_conical (int index)
-{
- pixman_point_fixed_t c;
- double angle;
-
- c.x = pixman_double_to_fixed (0);
- c.y = pixman_double_to_fixed (0);
-
- angle = (0.5 / NUM_GRADIENTS + index / (double)NUM_GRADIENTS) * 720 - 180;
-
- return pixman_image_create_conical_gradient (
- &c, pixman_double_to_fixed (angle), stops, NUM_STOPS);
-}
-
-int
-main (int argc, char **argv)
-{
- pixman_transform_t transform;
- pixman_image_t *src_img, *dest_img;
- int i;
-
- enable_divbyzero_exceptions ();
-
- dest_img = pixman_image_create_bits (PIXMAN_a8r8g8b8,
- WIDTH, HEIGHT,
- NULL, 0);
-
- draw_checkerboard (dest_img, 25, 0xffaaaaaa, 0xff888888);
-
- pixman_transform_init_identity (&transform);
-
- pixman_transform_translate (NULL, &transform,
- pixman_double_to_fixed (0.5),
- pixman_double_to_fixed (0.5));
-
- pixman_transform_scale (NULL, &transform,
- pixman_double_to_fixed (SIZE),
- pixman_double_to_fixed (SIZE));
- pixman_transform_translate (NULL, &transform,
- pixman_double_to_fixed (0.5),
- pixman_double_to_fixed (0.5));
-
- for (i = 0; i < NUM_GRADIENTS; i++)
- {
- int column = i % GRADIENTS_PER_ROW;
- int row = i / GRADIENTS_PER_ROW;
-
- src_img = create_conical (i);
- pixman_image_set_repeat (src_img, PIXMAN_REPEAT_NORMAL);
-
- pixman_image_set_transform (src_img, &transform);
-
- pixman_image_composite32 (
- PIXMAN_OP_OVER, src_img, NULL,dest_img,
- 0, 0, 0, 0, column * SIZE, row * SIZE,
- SIZE, SIZE);
-
- pixman_image_unref (src_img);
- }
-
- show_image (dest_img);
-
- pixman_image_unref (dest_img);
-
- return 0;
-}