2012-02-23 07:30:51 -05:00
|
|
|
#define COGL_ENABLE_EXPERIMENTAL_2_0_API
|
2011-05-05 18:34:38 -04:00
|
|
|
#include <cogl/cogl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "test-utils.h"
|
|
|
|
|
2011-09-19 10:24:08 -04:00
|
|
|
#define FB_WIDTH 512
|
|
|
|
#define FB_HEIGHT 512
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-02-23 07:30:51 -05:00
|
|
|
static gboolean cogl_test_is_verbose;
|
|
|
|
|
2012-03-16 15:54:13 -04:00
|
|
|
CoglContext *ctx;
|
|
|
|
CoglFramebuffer *fb;
|
|
|
|
|
2011-05-05 18:34:38 -04:00
|
|
|
void
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_init (TestFlags flags)
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
|
|
|
static int counter = 0;
|
|
|
|
GError *error = NULL;
|
|
|
|
CoglOnscreen *onscreen = NULL;
|
2012-02-23 07:30:51 -05:00
|
|
|
CoglDisplay *display;
|
|
|
|
CoglRenderer *renderer;
|
|
|
|
gboolean missing_requirement = FALSE;
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
if (counter != 0)
|
|
|
|
g_critical ("We don't support running more than one test at a time\n"
|
|
|
|
"in a single test run due to the state leakage that can\n"
|
|
|
|
"cause subsequent tests to fail.\n"
|
|
|
|
"\n"
|
|
|
|
"If you want to run all the tests you should run\n"
|
|
|
|
"$ make test-report");
|
|
|
|
counter++;
|
|
|
|
|
2012-02-23 07:30:51 -05:00
|
|
|
if (g_getenv ("COGL_TEST_VERBOSE") || g_getenv ("V"))
|
|
|
|
cogl_test_is_verbose = TRUE;
|
|
|
|
|
|
|
|
if (g_getenv ("G_DEBUG"))
|
|
|
|
{
|
|
|
|
char *debug = g_strconcat (g_getenv ("G_DEBUG"), ",fatal-warnings", NULL);
|
|
|
|
g_setenv ("G_DEBUG", debug, TRUE);
|
|
|
|
g_free (debug);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_setenv ("G_DEBUG", "fatal-warnings", TRUE);
|
|
|
|
|
2011-09-19 08:40:28 -04:00
|
|
|
g_setenv ("COGL_X11_SYNC", "1", 0);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-03-16 15:54:13 -04:00
|
|
|
ctx = cogl_context_new (NULL, &error);
|
|
|
|
if (!ctx)
|
2011-05-05 18:34:38 -04:00
|
|
|
g_critical ("Failed to create a CoglContext: %s", error->message);
|
|
|
|
|
2012-03-16 15:54:13 -04:00
|
|
|
display = cogl_context_get_display (ctx);
|
2012-02-23 07:30:51 -05:00
|
|
|
renderer = cogl_display_get_renderer (display);
|
|
|
|
|
2012-03-06 18:41:49 -05:00
|
|
|
if (flags & TEST_REQUIREMENT_GL &&
|
2012-02-23 07:30:51 -05:00
|
|
|
cogl_renderer_get_driver (renderer) != COGL_DRIVER_GL)
|
|
|
|
{
|
|
|
|
missing_requirement = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-03-06 18:41:49 -05:00
|
|
|
if (flags & TEST_REQUIREMENT_NPOT &&
|
2012-03-16 15:54:13 -04:00
|
|
|
!cogl_has_feature (ctx, COGL_FEATURE_ID_TEXTURE_NPOT))
|
2012-02-23 07:30:51 -05:00
|
|
|
{
|
|
|
|
missing_requirement = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-03-06 18:41:49 -05:00
|
|
|
if (flags & TEST_REQUIREMENT_TEXTURE_3D &&
|
2012-03-16 15:54:13 -04:00
|
|
|
!cogl_has_feature (ctx, COGL_FEATURE_ID_TEXTURE_3D))
|
2012-02-23 07:30:51 -05:00
|
|
|
{
|
|
|
|
missing_requirement = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-03-06 18:36:45 -05:00
|
|
|
if (flags & TEST_REQUIREMENT_POINT_SPRITE &&
|
2012-03-16 15:54:13 -04:00
|
|
|
!cogl_has_feature (ctx, COGL_FEATURE_ID_POINT_SPRITE))
|
2012-03-06 18:36:45 -05:00
|
|
|
{
|
|
|
|
missing_requirement = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-03-06 18:41:49 -05:00
|
|
|
if (flags & TEST_KNOWN_FAILURE)
|
|
|
|
{
|
|
|
|
missing_requirement = TRUE;
|
|
|
|
}
|
|
|
|
|
2011-05-05 18:34:38 -04:00
|
|
|
if (getenv ("COGL_TEST_ONSCREEN"))
|
|
|
|
{
|
2012-03-16 15:54:13 -04:00
|
|
|
onscreen = cogl_onscreen_new (ctx, 640, 480);
|
|
|
|
fb = COGL_FRAMEBUFFER (onscreen);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CoglHandle offscreen;
|
2012-03-16 15:54:13 -04:00
|
|
|
CoglHandle tex = cogl_texture_2d_new_with_size (ctx,
|
2011-05-05 18:34:38 -04:00
|
|
|
FB_WIDTH, FB_HEIGHT,
|
|
|
|
COGL_PIXEL_FORMAT_ANY,
|
|
|
|
&error);
|
|
|
|
if (!tex)
|
|
|
|
g_critical ("Failed to allocate texture: %s", error->message);
|
|
|
|
|
|
|
|
offscreen = cogl_offscreen_new_to_texture (tex);
|
2012-03-16 15:54:13 -04:00
|
|
|
fb = COGL_FRAMEBUFFER (offscreen);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
|
2012-03-16 15:54:13 -04:00
|
|
|
if (!cogl_framebuffer_allocate (fb, &error))
|
2011-05-05 18:34:38 -04:00
|
|
|
g_critical ("Failed to allocate framebuffer: %s", error->message);
|
|
|
|
|
|
|
|
if (onscreen)
|
|
|
|
cogl_onscreen_show (onscreen);
|
|
|
|
|
2012-03-16 15:54:13 -04:00
|
|
|
cogl_framebuffer_clear4f (fb,
|
2011-05-05 18:34:38 -04:00
|
|
|
COGL_BUFFER_BIT_COLOR |
|
|
|
|
COGL_BUFFER_BIT_DEPTH |
|
|
|
|
COGL_BUFFER_BIT_STENCIL,
|
|
|
|
0, 0, 0, 1);
|
|
|
|
|
2012-02-23 07:30:51 -05:00
|
|
|
if (missing_requirement)
|
|
|
|
g_print ("WARNING: Missing required feature[s] for this test\n");
|
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
|
|
|
{
|
2012-03-16 15:54:13 -04:00
|
|
|
if (fb)
|
|
|
|
cogl_object_unref (fb);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-03-16 15:54:13 -04:00
|
|
|
if (ctx)
|
|
|
|
cogl_object_unref (ctx);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
2011-10-26 09:15:14 -04:00
|
|
|
|
2011-12-07 07:38:38 -05:00
|
|
|
static gboolean
|
|
|
|
compare_component (int a, int b)
|
|
|
|
{
|
|
|
|
return ABS (a - b) <= 1;
|
|
|
|
}
|
|
|
|
|
2012-01-28 08:40:22 -05:00
|
|
|
void
|
|
|
|
test_utils_compare_pixel (const guint8 *screen_pixel, guint32 expected_pixel)
|
2011-12-07 07:38:38 -05:00
|
|
|
{
|
|
|
|
/* Compare each component with a small fuzz factor */
|
|
|
|
if (!compare_component (screen_pixel[0], expected_pixel >> 24) ||
|
|
|
|
!compare_component (screen_pixel[1], (expected_pixel >> 16) & 0xff) ||
|
|
|
|
!compare_component (screen_pixel[2], (expected_pixel >> 8) & 0xff))
|
|
|
|
{
|
|
|
|
guint32 screen_pixel_num = GUINT32_FROM_BE (*(guint32 *) screen_pixel);
|
|
|
|
char *screen_pixel_string =
|
|
|
|
g_strdup_printf ("#%06x", screen_pixel_num >> 8);
|
|
|
|
char *expected_pixel_string =
|
|
|
|
g_strdup_printf ("#%06x", expected_pixel >> 8);
|
|
|
|
|
|
|
|
g_assert_cmpstr (screen_pixel_string, ==, expected_pixel_string);
|
|
|
|
|
|
|
|
g_free (screen_pixel_string);
|
|
|
|
g_free (expected_pixel_string);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 09:15:14 -04:00
|
|
|
void
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_check_pixel (CoglFramebuffer *fb,
|
|
|
|
int x, int y, guint32 expected_pixel)
|
2011-10-26 09:15:14 -04:00
|
|
|
{
|
2011-12-07 07:38:38 -05:00
|
|
|
guint8 pixel[4];
|
2011-10-26 09:15:14 -04:00
|
|
|
|
2012-03-16 15:54:13 -04:00
|
|
|
cogl_framebuffer_read_pixels (fb,
|
|
|
|
x, y, 1, 1,
|
|
|
|
COGL_PIXEL_FORMAT_RGBA_8888_PRE,
|
|
|
|
pixel);
|
2011-10-26 09:15:14 -04:00
|
|
|
|
2012-01-28 08:40:22 -05:00
|
|
|
test_utils_compare_pixel (pixel, expected_pixel);
|
2011-10-26 09:15:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_check_pixel_rgb (CoglFramebuffer *fb,
|
|
|
|
int x, int y, int r, int g, int b)
|
2011-10-26 09:15:14 -04:00
|
|
|
{
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_check_pixel (fb, x, y, (r << 24) | (g << 16) | (b << 8));
|
2011-10-26 09:15:14 -04:00
|
|
|
}
|
2011-10-31 10:55:20 -04:00
|
|
|
|
|
|
|
void
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_check_region (CoglFramebuffer *fb,
|
|
|
|
int x, int y,
|
2011-10-31 10:55:20 -04:00
|
|
|
int width, int height,
|
|
|
|
guint32 expected_rgba)
|
|
|
|
{
|
|
|
|
guint8 *pixels, *p;
|
|
|
|
|
|
|
|
pixels = p = g_malloc (width * height * 4);
|
2012-03-16 15:54:13 -04:00
|
|
|
cogl_framebuffer_read_pixels (fb,
|
|
|
|
x,
|
|
|
|
y,
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
COGL_PIXEL_FORMAT_RGBA_8888,
|
|
|
|
p);
|
2011-10-31 10:55:20 -04:00
|
|
|
|
|
|
|
/* Check whether the center of each division is the right color */
|
|
|
|
for (y = 0; y < height; y++)
|
|
|
|
for (x = 0; x < width; x++)
|
|
|
|
{
|
2012-01-28 08:40:22 -05:00
|
|
|
test_utils_compare_pixel (p, expected_rgba);
|
2011-10-31 10:55:20 -04:00
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (pixels);
|
|
|
|
}
|
|
|
|
|
2012-02-10 11:57:24 -05:00
|
|
|
CoglTexture *
|
|
|
|
test_utils_create_color_texture (CoglContext *context,
|
|
|
|
guint32 color)
|
|
|
|
{
|
|
|
|
CoglTexture2D *tex_2d;
|
|
|
|
|
|
|
|
color = GUINT32_TO_BE (color);
|
2011-10-31 10:55:20 -04:00
|
|
|
|
2012-02-10 11:57:24 -05:00
|
|
|
tex_2d = cogl_texture_2d_new_from_data (context,
|
|
|
|
1, 1, /* width/height */
|
|
|
|
COGL_PIXEL_FORMAT_RGBA_8888_PRE,
|
|
|
|
COGL_PIXEL_FORMAT_RGBA_8888_PRE,
|
|
|
|
4, /* rowstride */
|
|
|
|
(guint8 *) &color,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
return COGL_TEXTURE (tex_2d);
|
|
|
|
}
|
2012-02-23 07:30:51 -05:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
cogl_test_verbose (void)
|
|
|
|
{
|
|
|
|
return cogl_test_is_verbose;
|
|
|
|
}
|