2011-05-05 18:34:38 -04:00
|
|
|
#include <cogl/cogl.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
#include "test-utils.h"
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
#define TILE_SIZE 32.0f
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
TILE_MAP,
|
|
|
|
TILE_SET_DATA,
|
|
|
|
NB_TILES,
|
|
|
|
TILE_SET_REGION,
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct test_tile
|
|
|
|
{
|
2012-02-25 16:00:55 -05:00
|
|
|
guint8 color[4];
|
2011-05-05 18:34:38 -04:00
|
|
|
gfloat x, y;
|
2012-02-25 16:00:55 -05:00
|
|
|
CoglBuffer *buffer;
|
|
|
|
CoglTexture *texture;
|
2011-05-05 18:34:38 -04:00
|
|
|
} TestTile;
|
|
|
|
|
|
|
|
typedef struct _TestState
|
|
|
|
{
|
|
|
|
TestTile *tiles;
|
2012-02-25 16:00:55 -05:00
|
|
|
int width;
|
|
|
|
int height;
|
2011-05-05 18:34:38 -04:00
|
|
|
} TestState;
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
static CoglTexture *
|
|
|
|
create_texture_from_bitmap (CoglBitmap *bitmap)
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
2012-02-25 16:00:55 -05:00
|
|
|
CoglTexture *texture;
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
texture = cogl_texture_new_from_bitmap (bitmap,
|
|
|
|
COGL_TEXTURE_NONE,
|
|
|
|
COGL_PIXEL_FORMAT_RGBA_8888);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
g_assert (texture != NULL);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-02-25 16:00:55 -05:00
|
|
|
create_map_tile (CoglContext *context,
|
|
|
|
TestTile *tile)
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
2012-02-25 16:00:55 -05:00
|
|
|
CoglBitmap *bitmap;
|
|
|
|
CoglBuffer *buffer;
|
2011-05-05 18:34:38 -04:00
|
|
|
guchar *map;
|
|
|
|
unsigned int i;
|
2012-02-25 16:00:55 -05:00
|
|
|
unsigned int stride;
|
2011-05-05 18:34:38 -04:00
|
|
|
guint8 *line;
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
bitmap = cogl_bitmap_new_with_size (context,
|
|
|
|
TILE_SIZE,
|
|
|
|
TILE_SIZE,
|
|
|
|
COGL_PIXEL_FORMAT_RGBA_8888);
|
|
|
|
buffer = COGL_BUFFER (cogl_bitmap_get_buffer (bitmap));
|
|
|
|
stride = cogl_bitmap_get_rowstride (bitmap);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
g_assert (cogl_is_pixel_buffer (buffer));
|
2011-05-05 18:34:38 -04:00
|
|
|
g_assert (cogl_is_buffer (buffer));
|
|
|
|
|
|
|
|
cogl_buffer_set_update_hint (buffer, COGL_BUFFER_UPDATE_HINT_DYNAMIC);
|
|
|
|
g_assert_cmpint (cogl_buffer_get_update_hint (buffer),
|
|
|
|
==,
|
|
|
|
COGL_BUFFER_UPDATE_HINT_DYNAMIC);
|
|
|
|
|
|
|
|
map = cogl_buffer_map (buffer,
|
|
|
|
COGL_BUFFER_ACCESS_WRITE,
|
|
|
|
COGL_BUFFER_MAP_HINT_DISCARD);
|
|
|
|
g_assert (map);
|
|
|
|
|
|
|
|
line = g_alloca (TILE_SIZE * 4);
|
|
|
|
for (i = 0; i < TILE_SIZE * 4; i += 4)
|
2012-02-25 16:00:55 -05:00
|
|
|
memcpy (line + i, tile->color, 4);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
for (i = 0; i < TILE_SIZE; i++)
|
|
|
|
memcpy (map + stride * i, line, TILE_SIZE * 4);
|
|
|
|
|
|
|
|
cogl_buffer_unmap (buffer);
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
tile->buffer = cogl_object_ref (buffer);
|
|
|
|
tile->texture = create_texture_from_bitmap (bitmap);
|
|
|
|
|
|
|
|
cogl_object_unref (bitmap);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static void
|
2012-02-25 16:00:55 -05:00
|
|
|
create_set_region_tile (CoglContext *context,
|
|
|
|
TestTile *tile)
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
2012-02-25 16:00:55 -05:00
|
|
|
CoglBitmap *bitmap;
|
|
|
|
CoglBuffer *buffer;
|
|
|
|
guint8 bottom_color[4];
|
2011-05-05 18:34:38 -04:00
|
|
|
unsigned int rowstride = 0;
|
|
|
|
guchar *data;
|
|
|
|
unsigned int i;
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
bitmap = cogl_bitmap_new_with_size (context,
|
|
|
|
TILE_SIZE,
|
|
|
|
TILE_SIZE,
|
|
|
|
COGL_PIXEL_FORMAT_RGBA_8888);
|
|
|
|
buffer = COGL_BUFFER (cogl_bitmap_get_buffer (bitmap));
|
|
|
|
rowstride = cogl_bitmap_get_rowstride (bitmap);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
g_assert (cogl_is_pixel_buffer (buffer));
|
2011-05-05 18:34:38 -04:00
|
|
|
g_assert (cogl_is_buffer (buffer));
|
|
|
|
|
|
|
|
/* while at it, set/get the hint */
|
2012-02-25 16:00:55 -05:00
|
|
|
cogl_buffer_set_update_hint (buffer, COGL_BUFFER_UPDATE_HINT_STATIC);
|
|
|
|
g_assert (cogl_buffer_get_update_hint (buffer) ==
|
|
|
|
COGL_BUFFER_UPDATE_HINT_STATIC);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
data = g_malloc (TILE_SIZE * TILE_SIZE * 4);
|
|
|
|
/* create a buffer with the data we want to copy to the buffer */
|
|
|
|
for (i = 0; i < TILE_SIZE * TILE_SIZE * 4; i += 4)
|
|
|
|
memcpy (data + i, &tile->color, 4);
|
|
|
|
|
|
|
|
cogl_pixel_array_set_region (buffer,
|
|
|
|
data,
|
|
|
|
TILE_SIZE, TILE_SIZE,
|
|
|
|
TILE_SIZE,
|
|
|
|
0, 0);
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
memcpy (bottom_color, tile->color, 4);
|
2011-05-05 18:34:38 -04:00
|
|
|
for (i = 0; i < TILE_SIZE / 2; i++)
|
2012-02-25 16:00:55 -05:00
|
|
|
memcpy (data + i, bottom_color, 4);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
cogl_buffer_set_data (buffer, 0, data, TILE_SIZE * TILE_SIZE * 4 / 2);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
g_free (data);
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
tile->buffer = cogl_object_ref (buffer);
|
|
|
|
tile->texture = create_texture_from_bitmap (bitmap);
|
|
|
|
|
|
|
|
cogl_object_unref (bitmap);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
2012-02-25 16:00:55 -05:00
|
|
|
create_set_data_tile (CoglContext *context,
|
|
|
|
TestTile *tile)
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
2012-02-25 16:00:55 -05:00
|
|
|
CoglBitmap *bitmap;
|
|
|
|
CoglBuffer *buffer;
|
2011-05-05 18:34:38 -04:00
|
|
|
unsigned int rowstride = 0;
|
|
|
|
gboolean res;
|
|
|
|
guchar *data;
|
|
|
|
unsigned int i;
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
bitmap = cogl_bitmap_new_with_size (context,
|
|
|
|
TILE_SIZE,
|
|
|
|
TILE_SIZE,
|
|
|
|
COGL_PIXEL_FORMAT_RGBA_8888);
|
|
|
|
buffer = COGL_BUFFER (cogl_bitmap_get_buffer (bitmap));
|
|
|
|
rowstride = cogl_bitmap_get_rowstride (bitmap);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
g_assert (cogl_is_pixel_buffer (buffer));
|
2011-05-05 18:34:38 -04:00
|
|
|
g_assert (cogl_is_buffer (buffer));
|
|
|
|
g_assert_cmpint (cogl_buffer_get_size (buffer), ==, rowstride * TILE_SIZE);
|
|
|
|
|
|
|
|
/* create a buffer with the data we want to copy to the buffer */
|
|
|
|
data = g_malloc (TILE_SIZE * TILE_SIZE * 4);
|
|
|
|
for (i = 0; i < TILE_SIZE * TILE_SIZE * 4; i += 4)
|
2012-02-25 16:00:55 -05:00
|
|
|
memcpy (data + i, tile->color, 4);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
/* FIXME: this doesn't consider the rowstride */
|
|
|
|
res = cogl_buffer_set_data (buffer, 0, data, TILE_SIZE * TILE_SIZE * 4);
|
|
|
|
g_assert (res);
|
|
|
|
|
|
|
|
g_free (data);
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
tile->buffer = cogl_object_ref (buffer);
|
|
|
|
tile->texture = create_texture_from_bitmap (bitmap);
|
|
|
|
|
|
|
|
cogl_object_unref (bitmap);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_frame (TestState *state)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
/* Paint the textures */
|
|
|
|
for (i = 0; i < NB_TILES; i++)
|
|
|
|
{
|
2012-03-16 15:54:13 -04:00
|
|
|
CoglPipeline *pipeline = cogl_pipeline_new (ctx);
|
|
|
|
cogl_pipeline_set_layer_texture (pipeline, 0, state->tiles[i].texture);
|
|
|
|
cogl_framebuffer_draw_rectangle (fb,
|
|
|
|
pipeline,
|
|
|
|
state->tiles[i].x,
|
|
|
|
state->tiles[i].y,
|
|
|
|
state->tiles[i].x + TILE_SIZE,
|
|
|
|
state->tiles[i].y + TILE_SIZE);
|
|
|
|
cogl_object_unref (pipeline);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
static void
|
2011-05-05 18:34:38 -04:00
|
|
|
validate_tile (TestState *state,
|
|
|
|
TestTile *tile)
|
|
|
|
{
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_check_region (fb,
|
|
|
|
tile->x, tile->y,
|
2012-02-25 16:00:55 -05:00
|
|
|
TILE_SIZE, TILE_SIZE,
|
|
|
|
(tile->color[0] << 24) |
|
|
|
|
(tile->color[1] << 16) |
|
|
|
|
(tile->color[2] << 8) |
|
|
|
|
0xff);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
validate_result (TestState *state)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < NB_TILES; i++)
|
2012-02-25 16:00:55 -05:00
|
|
|
validate_tile (state, &state->tiles[i]);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-03-16 15:54:13 -04:00
|
|
|
test_pixel_buffer (void)
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
|
|
|
TestState state;
|
2012-02-25 16:00:55 -05:00
|
|
|
int i;
|
2011-05-05 18:34:38 -04:00
|
|
|
static TestTile tiles[NB_TILES] =
|
|
|
|
{
|
|
|
|
/* color x y buffer tex */
|
|
|
|
|
|
|
|
/* MAP */
|
|
|
|
{ { 0xff, 0x00, 0x00, 0xff }, 0.0f, 0.0f, NULL, NULL },
|
|
|
|
#if 0
|
|
|
|
/* SET_REGION */
|
|
|
|
{ { 0x7e, 0x7e, 0xff, 0x7e }, 0.0f, TILE_SIZE, NULL, NULL },
|
|
|
|
#endif
|
|
|
|
/* SET_DATA */
|
|
|
|
{ { 0x7e, 0xff, 0x7e, 0xff }, 0.0f, TILE_SIZE, NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2012-03-16 15:54:13 -04:00
|
|
|
state.width = cogl_framebuffer_get_width (fb);
|
|
|
|
state.height = cogl_framebuffer_get_height (fb);
|
|
|
|
cogl_framebuffer_orthographic (fb,
|
|
|
|
0, 0,
|
|
|
|
state.width,
|
|
|
|
state.height,
|
|
|
|
-1,
|
|
|
|
100);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-03-16 15:54:13 -04:00
|
|
|
create_map_tile (ctx, &tiles[TILE_MAP]);
|
2011-05-05 18:34:38 -04:00
|
|
|
#if 0
|
2012-02-25 16:00:55 -05:00
|
|
|
create_set_region_tile (shared_state->ctx, &tiles[TILE_SET_REGION]);
|
2011-05-05 18:34:38 -04:00
|
|
|
#endif
|
2012-03-16 15:54:13 -04:00
|
|
|
create_set_data_tile (ctx, &tiles[TILE_SET_DATA]);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
state.tiles = tiles;
|
|
|
|
|
2012-02-25 16:00:55 -05:00
|
|
|
draw_frame (&state);
|
|
|
|
validate_result (&state);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
for (i = 0; i < NB_TILES; i++)
|
|
|
|
{
|
2012-02-25 16:00:55 -05:00
|
|
|
cogl_object_unref (state.tiles[i].buffer);
|
|
|
|
cogl_object_unref (state.tiles[i].texture);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
|
2012-02-23 07:30:51 -05:00
|
|
|
if (cogl_test_verbose ())
|
2011-05-05 18:34:38 -04:00
|
|
|
g_print ("OK\n");
|
|
|
|
}
|
|
|
|
|