3881fd3259
This adds experimental 2.0 api replacements for the cogl_rectangle[_*] functions that don't depend on having a current pipeline set on the context via cogl_{set,push}_source() or having a current framebuffer set on the context via cogl_push_framebuffer(). The aim for 2.0 is to switch away from having a statefull context that affects drawing to having framebuffer drawing apis that are explicitly passed a framebuffer and pipeline. To test this change several of the conformance tests were updated to use this api instead of cogl_rectangle and cogl_rectangle_with_texture_coords. Since it's quite laborious going through all of the conformance tests the opportunity was taken to make other clean ups in the conformance tests to replace other uses of 1.x api with experimental 2.0 api so long as that didn't affect what was being tested.
102 lines
3.1 KiB
C
102 lines
3.1 KiB
C
#include <cogl/cogl2-experimental.h>
|
|
|
|
#include "test-utils.h"
|
|
|
|
/* This test assumes the GL driver supports point sizes up to 16
|
|
pixels. Cogl should probably have some way of querying the size so
|
|
we start from that instead */
|
|
#define MAX_POINT_SIZE 16
|
|
/* The size of the area that we'll paint each point in */
|
|
#define POINT_BOX_SIZE (MAX_POINT_SIZE * 2)
|
|
|
|
static int
|
|
calc_coord_offset (int pos, int pos_index, int point_size)
|
|
{
|
|
switch (pos_index)
|
|
{
|
|
case 0: return pos - point_size / 2 - 2;
|
|
case 1: return pos - point_size / 2 + 2;
|
|
case 2: return pos + point_size / 2 - 2;
|
|
case 3: return pos + point_size / 2 + 2;
|
|
}
|
|
|
|
g_assert_not_reached ();
|
|
}
|
|
|
|
static void
|
|
verify_point_size (CoglFramebuffer *fb,
|
|
int x_pos,
|
|
int y_pos,
|
|
int point_size)
|
|
{
|
|
int y, x;
|
|
|
|
for (y = 0; y < 4; y++)
|
|
for (x = 0; x < 4; x++)
|
|
{
|
|
gboolean in_point = x >= 1 && x <= 2 && y >= 1 && y <= 2;
|
|
guint32 expected_pixel = in_point ? 0x00ff00ff : 0xff0000ff;
|
|
|
|
test_utils_check_pixel (fb,
|
|
calc_coord_offset (x_pos, x, point_size),
|
|
calc_coord_offset (y_pos, y, point_size),
|
|
expected_pixel);
|
|
}
|
|
}
|
|
|
|
void
|
|
test_point_size (void)
|
|
{
|
|
int fb_width = cogl_framebuffer_get_width (fb);
|
|
int fb_height = cogl_framebuffer_get_height (fb);
|
|
int point_size;
|
|
int x_pos;
|
|
|
|
cogl_framebuffer_orthographic (fb,
|
|
0, 0, /* x_1, y_1 */
|
|
fb_width, /* x_2 */
|
|
fb_height /* y_2 */,
|
|
-1, 100 /* near/far */);
|
|
|
|
cogl_framebuffer_clear4f (fb,
|
|
COGL_BUFFER_BIT_COLOR,
|
|
1.0f, 0.0f, 0.0f, 1.0f);
|
|
|
|
/* Try a rendering a single point with a few different point
|
|
sizes */
|
|
for (x_pos = 0, point_size = MAX_POINT_SIZE;
|
|
point_size >= 4;
|
|
x_pos += POINT_BOX_SIZE, point_size /= 2)
|
|
{
|
|
CoglPipeline *pipeline = cogl_pipeline_new (ctx);
|
|
CoglVertexP2 point = { x_pos + POINT_BOX_SIZE / 2,
|
|
POINT_BOX_SIZE / 2 };
|
|
CoglPrimitive *prim =
|
|
cogl_primitive_new_p2 (ctx,
|
|
COGL_VERTICES_MODE_POINTS,
|
|
1, /* n_vertices */
|
|
&point);
|
|
|
|
cogl_pipeline_set_point_size (pipeline, point_size);
|
|
cogl_pipeline_set_color4ub (pipeline, 0, 255, 0, 255);
|
|
cogl_framebuffer_draw_primitive (fb,
|
|
pipeline,
|
|
prim);
|
|
|
|
cogl_object_unref (prim);
|
|
cogl_object_unref (pipeline);
|
|
}
|
|
|
|
/* Verify all of the points where drawn at the right size */
|
|
for (x_pos = 0, point_size = MAX_POINT_SIZE;
|
|
point_size >= 4;
|
|
x_pos += POINT_BOX_SIZE, point_size /= 2)
|
|
verify_point_size (fb,
|
|
x_pos + POINT_BOX_SIZE / 2,
|
|
POINT_BOX_SIZE / 2,
|
|
point_size);
|
|
|
|
if (cogl_test_verbose ())
|
|
g_print ("OK\n");
|
|
}
|