2012-03-06 18:36:45 -05:00
|
|
|
#include <cogl/cogl2-experimental.h>
|
|
|
|
|
|
|
|
#include "test-utils.h"
|
|
|
|
|
|
|
|
#define POINT_SIZE 8
|
|
|
|
|
|
|
|
static const CoglVertexP2T2
|
|
|
|
point =
|
|
|
|
{
|
|
|
|
POINT_SIZE, POINT_SIZE,
|
|
|
|
0.0f, 0.0f
|
|
|
|
};
|
|
|
|
|
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
|
|
|
static const uint8_t
|
2012-03-06 18:36:45 -05:00
|
|
|
tex_data[3 * 2 * 2] =
|
|
|
|
{
|
|
|
|
0x00, 0x00, 0xff, 0x00, 0xff, 0x00,
|
|
|
|
0x00, 0xff, 0xff, 0xff, 0x00, 0x00
|
|
|
|
};
|
|
|
|
|
2012-07-02 09:50:54 -04:00
|
|
|
static void
|
|
|
|
do_test (CoglBool check_orientation)
|
2012-03-06 18:36:45 -05:00
|
|
|
{
|
2013-01-18 12:57:06 -05:00
|
|
|
int fb_width = cogl_framebuffer_get_width (test_fb);
|
|
|
|
int fb_height = cogl_framebuffer_get_height (test_fb);
|
2012-03-06 18:36:45 -05:00
|
|
|
CoglPrimitive *prim;
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError *error = NULL;
|
2012-03-06 18:36:45 -05:00
|
|
|
CoglTexture2D *tex_2d;
|
|
|
|
CoglPipeline *pipeline, *solid_pipeline;
|
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 res;
|
2012-07-02 09:50:54 -04:00
|
|
|
int tex_height;
|
2012-03-06 18:36:45 -05:00
|
|
|
|
2013-01-18 12:57:06 -05:00
|
|
|
cogl_framebuffer_orthographic (test_fb,
|
2012-03-06 18:36:45 -05:00
|
|
|
0, 0, /* x_1, y_1 */
|
|
|
|
fb_width, /* x_2 */
|
|
|
|
fb_height /* y_2 */,
|
|
|
|
-1, 100 /* near/far */);
|
|
|
|
|
2013-01-18 12:57:06 -05:00
|
|
|
cogl_framebuffer_clear4f (test_fb,
|
2012-03-06 18:36:45 -05:00
|
|
|
COGL_BUFFER_BIT_COLOR,
|
|
|
|
1.0f, 1.0f, 1.0f, 1.0f);
|
|
|
|
|
2012-07-02 09:50:54 -04:00
|
|
|
/* If we're not checking the orientation of the point sprite then
|
|
|
|
* we'll set the height of the texture to 1 so that the vertical
|
|
|
|
* orientation does not matter */
|
|
|
|
if (check_orientation)
|
|
|
|
tex_height = 2;
|
|
|
|
else
|
|
|
|
tex_height = 1;
|
|
|
|
|
2013-01-18 12:57:06 -05:00
|
|
|
tex_2d = cogl_texture_2d_new_from_data (test_ctx,
|
2012-07-02 09:50:54 -04:00
|
|
|
2, tex_height, /* width/height */
|
2012-03-06 18:36:45 -05:00
|
|
|
COGL_PIXEL_FORMAT_RGB_888,
|
|
|
|
COGL_PIXEL_FORMAT_ANY,
|
|
|
|
6, /* row stride */
|
|
|
|
tex_data,
|
|
|
|
&error);
|
|
|
|
g_assert (tex_2d != NULL);
|
|
|
|
g_assert (error == NULL);
|
|
|
|
|
2013-01-18 12:57:06 -05:00
|
|
|
pipeline = cogl_pipeline_new (test_ctx);
|
2012-03-06 18:36:45 -05:00
|
|
|
cogl_pipeline_set_layer_texture (pipeline, 0, COGL_TEXTURE (tex_2d));
|
|
|
|
|
|
|
|
res = cogl_pipeline_set_layer_point_sprite_coords_enabled (pipeline,
|
|
|
|
/* layer_index */
|
|
|
|
0,
|
|
|
|
/* enable */
|
|
|
|
TRUE,
|
|
|
|
&error);
|
|
|
|
g_assert (res == TRUE);
|
|
|
|
g_assert (error == NULL);
|
|
|
|
|
|
|
|
cogl_pipeline_set_layer_filters (pipeline,
|
|
|
|
0, /* layer_index */
|
|
|
|
COGL_PIPELINE_FILTER_NEAREST,
|
|
|
|
COGL_PIPELINE_FILTER_NEAREST);
|
|
|
|
cogl_pipeline_set_point_size (pipeline, POINT_SIZE);
|
|
|
|
|
2013-01-18 12:57:06 -05:00
|
|
|
prim = cogl_primitive_new_p2t2 (test_ctx,
|
2012-03-06 18:36:45 -05:00
|
|
|
COGL_VERTICES_MODE_POINTS,
|
|
|
|
1, /* n_vertices */
|
|
|
|
&point);
|
|
|
|
|
2013-01-18 12:57:06 -05:00
|
|
|
cogl_framebuffer_draw_primitive (test_fb,
|
2012-03-06 18:36:45 -05:00
|
|
|
pipeline,
|
|
|
|
prim);
|
|
|
|
|
|
|
|
/* Render the primitive again without point sprites to make sure
|
|
|
|
disabling it works */
|
|
|
|
solid_pipeline = cogl_pipeline_copy (pipeline);
|
|
|
|
cogl_pipeline_set_layer_point_sprite_coords_enabled (solid_pipeline,
|
|
|
|
/* layer_index */
|
|
|
|
0,
|
|
|
|
/* enable */
|
|
|
|
FALSE,
|
|
|
|
&error);
|
2013-01-18 12:57:06 -05:00
|
|
|
cogl_framebuffer_push_matrix (test_fb);
|
|
|
|
cogl_framebuffer_translate (test_fb,
|
2012-03-06 18:36:45 -05:00
|
|
|
POINT_SIZE * 2, /* x */
|
|
|
|
0.0f, /* y */
|
|
|
|
0.0f /* z */);
|
2013-01-18 12:57:06 -05:00
|
|
|
cogl_framebuffer_draw_primitive (test_fb,
|
2012-03-06 18:36:45 -05:00
|
|
|
solid_pipeline,
|
|
|
|
prim);
|
2013-01-18 12:57:06 -05:00
|
|
|
cogl_framebuffer_pop_matrix (test_fb);
|
2012-03-06 18:36:45 -05:00
|
|
|
|
|
|
|
cogl_object_unref (prim);
|
|
|
|
cogl_object_unref (solid_pipeline);
|
|
|
|
cogl_object_unref (pipeline);
|
|
|
|
cogl_object_unref (tex_2d);
|
|
|
|
|
2013-01-18 12:57:06 -05:00
|
|
|
test_utils_check_pixel (test_fb,
|
2012-03-16 15:54:13 -04:00
|
|
|
POINT_SIZE - POINT_SIZE / 4,
|
2012-03-06 18:36:45 -05:00
|
|
|
POINT_SIZE - POINT_SIZE / 4,
|
|
|
|
0x0000ffff);
|
2013-01-18 12:57:06 -05:00
|
|
|
test_utils_check_pixel (test_fb,
|
2012-03-16 15:54:13 -04:00
|
|
|
POINT_SIZE + POINT_SIZE / 4,
|
2012-03-06 18:36:45 -05:00
|
|
|
POINT_SIZE - POINT_SIZE / 4,
|
|
|
|
0x00ff00ff);
|
2013-01-18 12:57:06 -05:00
|
|
|
test_utils_check_pixel (test_fb,
|
2012-03-16 15:54:13 -04:00
|
|
|
POINT_SIZE - POINT_SIZE / 4,
|
2012-03-06 18:36:45 -05:00
|
|
|
POINT_SIZE + POINT_SIZE / 4,
|
2012-07-02 09:50:54 -04:00
|
|
|
check_orientation ?
|
|
|
|
0x00ffffff :
|
|
|
|
0x0000ffff);
|
2013-01-18 12:57:06 -05:00
|
|
|
test_utils_check_pixel (test_fb,
|
2012-03-16 15:54:13 -04:00
|
|
|
POINT_SIZE + POINT_SIZE / 4,
|
2012-03-06 18:36:45 -05:00
|
|
|
POINT_SIZE + POINT_SIZE / 4,
|
2012-07-02 09:50:54 -04:00
|
|
|
check_orientation ?
|
|
|
|
0xff0000ff :
|
|
|
|
0x00ff00ff);
|
2012-03-06 18:36:45 -05:00
|
|
|
|
|
|
|
/* When rendering without the point sprites all of the texture
|
|
|
|
coordinates should be 0,0 so it should get the top-left texel
|
|
|
|
which is blue */
|
2013-01-18 12:57:06 -05:00
|
|
|
test_utils_check_region (test_fb,
|
2012-03-16 15:54:13 -04:00
|
|
|
POINT_SIZE * 3 - POINT_SIZE / 2 + 1,
|
2012-03-06 18:36:45 -05:00
|
|
|
POINT_SIZE - POINT_SIZE / 2 + 1,
|
|
|
|
POINT_SIZE - 2, POINT_SIZE - 2,
|
|
|
|
0x0000ffff);
|
|
|
|
|
|
|
|
if (cogl_test_verbose ())
|
|
|
|
g_print ("OK\n");
|
|
|
|
}
|
2012-07-02 09:50:54 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
test_point_sprite (void)
|
|
|
|
{
|
|
|
|
do_test (FALSE /* don't check orientation */);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
test_point_sprite_orientation (void)
|
|
|
|
{
|
|
|
|
do_test (TRUE /* check orientation */);
|
|
|
|
}
|