2011-05-05 18:34:38 -04:00
|
|
|
#ifndef _TEST_UTILS_H_
|
|
|
|
#define _TEST_UTILS_H_
|
|
|
|
|
2013-07-03 05:50:37 -04:00
|
|
|
#include <cogl/cogl-context.h>
|
|
|
|
#include <cogl/cogl-onscreen.h>
|
|
|
|
#include <cogl/cogl-offscreen.h>
|
|
|
|
#include <cogl/cogl-texture-2d.h>
|
2012-11-22 13:01:10 -05:00
|
|
|
#include <glib.h>
|
|
|
|
|
2012-03-06 13:21:28 -05:00
|
|
|
/* We don't really care about functions that are defined without a
|
|
|
|
header for the unit tests so we can just disable it here */
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma GCC diagnostic ignored "-Wmissing-declarations"
|
|
|
|
#endif
|
|
|
|
|
2012-03-06 18:41:49 -05:00
|
|
|
typedef enum _TestFlags
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
2012-12-10 13:11:28 -05:00
|
|
|
TEST_KNOWN_FAILURE = 1<<0,
|
|
|
|
TEST_REQUIREMENT_GL = 1<<1,
|
|
|
|
TEST_REQUIREMENT_NPOT = 1<<2,
|
|
|
|
TEST_REQUIREMENT_TEXTURE_3D = 1<<3,
|
|
|
|
TEST_REQUIREMENT_TEXTURE_RECTANGLE = 1<<4,
|
|
|
|
TEST_REQUIREMENT_POINT_SPRITE = 1<<5,
|
|
|
|
TEST_REQUIREMENT_GLES2_CONTEXT = 1<<6,
|
|
|
|
TEST_REQUIREMENT_MAP_WRITE = 1<<7,
|
2012-12-13 10:27:52 -05:00
|
|
|
TEST_REQUIREMENT_GLSL = 1<<8,
|
2013-01-10 20:13:34 -05:00
|
|
|
TEST_REQUIREMENT_OFFSCREEN = 1<<9,
|
2012-11-08 11:56:02 -05:00
|
|
|
TEST_REQUIREMENT_FENCE = 1<<10,
|
|
|
|
TEST_REQUIREMENT_PER_VERTEX_POINT_SIZE = 1<<11
|
2012-03-06 18:41:49 -05:00
|
|
|
} TestFlags;
|
2012-02-23 07:30:51 -05:00
|
|
|
|
2013-01-18 12:57:06 -05:00
|
|
|
extern CoglContext *test_ctx;
|
|
|
|
extern CoglFramebuffer *test_fb;
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
void
|
2012-11-09 11:47:01 -05:00
|
|
|
test_utils_init (TestFlags requirement_flags,
|
|
|
|
TestFlags known_failure_flags);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
void
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_fini (void);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2011-10-26 09:15:14 -04:00
|
|
|
/*
|
|
|
|
* test_utils_check_pixel:
|
2012-03-16 15:54:13 -04:00
|
|
|
* @framebuffer: The #CoglFramebuffer to read from
|
2011-10-26 09:15:14 -04:00
|
|
|
* @x: x co-ordinate of the pixel to test
|
|
|
|
* @y: y co-ordinate of the pixel to test
|
|
|
|
* @pixel: An integer of the form 0xRRGGBBAA representing the expected
|
|
|
|
* pixel value
|
|
|
|
*
|
2012-03-16 15:54:13 -04:00
|
|
|
* This performs reads a pixel on the given cogl @framebuffer and
|
2011-10-26 09:15:14 -04:00
|
|
|
* asserts that it matches the given color. The alpha channel of the
|
|
|
|
* color is ignored. The pixels are converted to a string and compared
|
|
|
|
* with g_assert_cmpstr so that if the comparison fails then the
|
|
|
|
* assert will display a meaningful message
|
|
|
|
*/
|
|
|
|
void
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_check_pixel (CoglFramebuffer *framebuffer,
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
int x, int y, uint32_t expected_pixel);
|
2011-10-26 09:15:14 -04:00
|
|
|
|
2013-05-22 14:49:05 -04:00
|
|
|
/**
|
|
|
|
* @framebuffer: The #CoglFramebuffer to read from
|
|
|
|
* @x: x co-ordinate of the pixel to test
|
|
|
|
* @y: y co-ordinate of the pixel to test
|
|
|
|
* @pixel: An integer of the form 0xRRGGBBAA representing the expected
|
|
|
|
* pixel value
|
|
|
|
*
|
|
|
|
* This performs reads a pixel on the given cogl @framebuffer and
|
|
|
|
* asserts that it matches the given color. The alpha channel is also
|
|
|
|
* checked unlike with test_utils_check_pixel(). The pixels are
|
|
|
|
* converted to a string and compared with g_assert_cmpstr so that if
|
|
|
|
* the comparison fails then the assert will display a meaningful
|
|
|
|
* message.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
test_utils_check_pixel_and_alpha (CoglFramebuffer *fb,
|
|
|
|
int x, int y, uint32_t expected_pixel);
|
|
|
|
|
2011-10-26 09:15:14 -04:00
|
|
|
/*
|
|
|
|
* test_utils_check_pixel:
|
2012-03-16 15:54:13 -04:00
|
|
|
* @framebuffer: The #CoglFramebuffer to read from
|
2011-10-26 09:15:14 -04:00
|
|
|
* @x: x co-ordinate of the pixel to test
|
|
|
|
* @y: y co-ordinate of the pixel to test
|
|
|
|
* @pixel: An integer of the form 0xrrggbb representing the expected pixel value
|
|
|
|
*
|
2012-03-16 15:54:13 -04:00
|
|
|
* This performs reads a pixel on the given cogl @framebuffer and
|
2011-10-26 09:15:14 -04:00
|
|
|
* asserts that it matches the given color. The alpha channel of the
|
|
|
|
* color is ignored. The pixels are converted to a string and compared
|
|
|
|
* with g_assert_cmpstr so that if the comparison fails then the
|
|
|
|
* assert will display a meaningful message
|
|
|
|
*/
|
|
|
|
void
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_check_pixel_rgb (CoglFramebuffer *framebuffer,
|
|
|
|
int x, int y, int r, int g, int b);
|
2011-10-26 09:15:14 -04:00
|
|
|
|
2011-10-31 10:55:20 -04:00
|
|
|
/*
|
|
|
|
* test_utils_check_region:
|
2012-03-16 15:54:13 -04:00
|
|
|
* @framebuffer: The #CoglFramebuffer to read from
|
2011-10-31 10:55:20 -04:00
|
|
|
* @x: x co-ordinate of the region to test
|
|
|
|
* @y: y co-ordinate of the region to test
|
|
|
|
* @width: width of the region to test
|
|
|
|
* @height: height of the region to test
|
|
|
|
* @pixel: An integer of the form 0xrrggbb representing the expected region color
|
|
|
|
*
|
2012-03-16 15:54:13 -04:00
|
|
|
* Performs a read pixel on the specified region of the given cogl
|
|
|
|
* @framebuffer and asserts that it matches the given color. The alpha
|
2011-10-31 10:55:20 -04:00
|
|
|
* channel of the color is ignored. The pixels are converted to a
|
|
|
|
* string and compared with g_assert_cmpstr so that if the comparison
|
|
|
|
* fails then the assert will display a meaningful message
|
|
|
|
*/
|
|
|
|
void
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_check_region (CoglFramebuffer *framebuffer,
|
|
|
|
int x, int y,
|
2011-10-31 10:55:20 -04:00
|
|
|
int width, int height,
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
uint32_t expected_rgba);
|
2011-10-31 10:55:20 -04:00
|
|
|
|
2012-01-28 08:40:22 -05:00
|
|
|
/*
|
|
|
|
* test_utils_compare_pixel:
|
|
|
|
* @screen_pixel: A pixel stored in memory
|
|
|
|
* @expected_pixel: The expected RGBA value
|
|
|
|
*
|
|
|
|
* Compares a pixel from a buffer to an expected value. The pixels are
|
|
|
|
* converted to a string and compared with g_assert_cmpstr so that if
|
|
|
|
* the comparison fails then the assert will display a meaningful
|
|
|
|
* message.
|
|
|
|
*/
|
|
|
|
void
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
test_utils_compare_pixel (const uint8_t *screen_pixel, uint32_t expected_pixel);
|
2012-01-28 08:40:22 -05:00
|
|
|
|
2013-01-21 13:43:24 -05:00
|
|
|
/*
|
|
|
|
* test_utils_compare_pixel_and_alpha:
|
|
|
|
* @screen_pixel: A pixel stored in memory
|
|
|
|
* @expected_pixel: The expected RGBA value
|
|
|
|
*
|
|
|
|
* Compares a pixel from a buffer to an expected value. This is
|
|
|
|
* similar to test_utils_compare_pixel() except that it doesn't ignore
|
|
|
|
* the alpha component.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
test_utils_compare_pixel_and_alpha (const uint8_t *screen_pixel,
|
|
|
|
uint32_t expected_pixel);
|
|
|
|
|
2012-02-10 11:57:24 -05:00
|
|
|
/*
|
|
|
|
* test_utils_create_color_texture:
|
|
|
|
* @context: A #CoglContext
|
|
|
|
* @color: A color to put in the texture
|
|
|
|
*
|
|
|
|
* Creates a 1x1-pixel RGBA texture filled with the given color.
|
|
|
|
*/
|
|
|
|
CoglTexture *
|
|
|
|
test_utils_create_color_texture (CoglContext *context,
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
uint32_t color);
|
2012-02-10 11:57:24 -05:00
|
|
|
|
2012-02-23 07:30:51 -05:00
|
|
|
/* cogl_test_verbose:
|
|
|
|
*
|
|
|
|
* Queries if the user asked for verbose output or not.
|
|
|
|
*/
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglBool
|
2012-02-23 07:30:51 -05:00
|
|
|
cogl_test_verbose (void);
|
|
|
|
|
2011-05-05 18:34:38 -04:00
|
|
|
#endif /* _TEST_UTILS_H_ */
|