1 /* This is a small demo of the high-performance GUIX graphics framework. */
2
3 #include <stdio.h>
4 #include "tx_api.h"
5 #include "gx_api.h"
6 #include "gx_validation_utility.h"
7
8 TEST_PARAM test_parameter = {
9 "guix_canvas_polygon_draw", /* Test name */
10 28, 24, 400, 430 /* Define the coordinates of the capture area.
11 In this test, we only need to capture the pixelmap
12 drawing area. */
13 };
14
15 static VOID control_thread_entry(ULONG);
main(int argc,char ** argv)16 int main(int argc, char ** argv)
17 {
18 /* Parse the command line argument. */
19 gx_validation_setup(argc, argv);
20
21 /* Start ThreadX system */
22 tx_kernel_enter();
23 return(0);
24 }
25
tx_application_define(void * first_unused_memory)26 VOID tx_application_define(void *first_unused_memory)
27 {
28
29 /* Create a dedicated thread to perform various operations
30 on the line drawing example. These operations simulate
31 user input. */
32 gx_validation_control_thread_create(control_thread_entry);
33
34 /* Termiante the test if it runs for more than 100 ticks */
35 /* This function is not implemented yet. */
36 gx_validation_watchdog_create(100);
37
38 /* Call the actual line example routine. */
39 gx_validation_application_define(first_unused_memory);
40
41 }
42
43
44 /* Replace the default graphics driver with the validation driver. */
45 #ifdef win32_graphics_driver_setup_24xrgb
46 #undef win32_graphics_driver_setup_24xrgb
47 #endif
48 #define win32_graphics_driver_setup_24xrgb gx_validation_graphics_driver_setup_24xrgb
49
50
51 #ifdef WIN32
52 #undef WIN32
53 #endif
54
55 #include "gx_validation_wrapper.h"
56 #include "demo_guix_graphics_32bpp.c"
57
58 char test_comment[255];
59
60 /* This thread simulates user input. Its priority is lower
61 than the GUIX thread, so that GUIX finishes an operation
62 before this thread is able to issue the next command. */
control_thread_entry(ULONG input)63 static VOID control_thread_entry(ULONG input)
64 {
65 int frame_id = 1;
66 int left, right, top, bottom;
67 GX_RECTANGLE size;
68 GX_RECTANGLE original_size;
69 static GX_WINDOW test_window;
70
71 draw_shape = POLYGON;
72 original_size = pGraphicsWin->gx_widget_size;
73 left = pGraphicsWin->gx_widget_size.gx_rectangle_left;
74 right = pGraphicsWin->gx_widget_size.gx_rectangle_right;
75 top = pGraphicsWin->gx_widget_size.gx_rectangle_top;
76 bottom = pGraphicsWin->gx_widget_size.gx_rectangle_bottom;
77
78 while(left<= right)
79 {
80 left += 5;
81 top += 10;
82 bottom -= 10;
83 right -= 20;
84
85 size.gx_rectangle_left = left;
86 size.gx_rectangle_right = right;
87 size.gx_rectangle_top = top;
88 size.gx_rectangle_bottom = bottom;
89
90 gx_widget_resize(pGraphicsWin, &size);
91
92 gx_validation_set_frame_id(frame_id);
93 sprintf(test_comment, "Resize graphics window:(%d,%d,%d,%d)",
94 left,top,right,bottom);
95
96 gx_validation_set_frame_comment(test_comment);
97
98 /* Mark the window "dirty" */
99 gx_system_dirty_mark(pMainWin);
100
101 /* Force a screen refresh. */
102 gx_validation_screen_refresh();
103
104 /* Increment frame ID */
105 frame_id ++;
106 }
107
108 gx_widget_resize(pGraphicsWin, &original_size);
109 gx_utility_rectangle_define(&size, original_size.gx_rectangle_left + 30,
110 original_size.gx_rectangle_top + 30,
111 original_size.gx_rectangle_right + 30,
112 original_size.gx_rectangle_bottom + 30);
113 gx_window_create(&test_window, "test_window", root, 0, 0, &size);
114
115 gx_validation_set_frame_id(frame_id++);
116 sprintf(test_comment, "Create a window to cover the graphics window then draw polygon.");
117
118 gx_validation_set_frame_comment(test_comment);
119
120 /* Mark the window "dirty" */
121 gx_system_dirty_mark(pMainWin);
122
123 /* Force a screen refresh. */
124 gx_validation_screen_refresh();
125
126 /* Signal the end of the test case. Verify the output. */
127 gx_validation_end();
128
129 exit(0);
130 }
131