2013-03-22 17:18:53 -04:00
|
|
|
#define COGL_VERSION_MIN_REQUIRED COGL_VERSION_1_0
|
|
|
|
|
2011-10-01 03:07:36 -04:00
|
|
|
#include <cogl/cogl.h>
|
|
|
|
|
2011-05-05 18:34:38 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
2019-01-20 05:41:48 -05:00
|
|
|
#include "test-declarations.h"
|
2011-10-01 03:07:36 -04:00
|
|
|
#include "test-utils.h"
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2011-10-01 03:07:36 -04:00
|
|
|
typedef struct _TestState
|
|
|
|
{
|
2012-03-16 15:54:13 -04:00
|
|
|
int paddiing;
|
2011-10-01 03:07:36 -04:00
|
|
|
} TestState;
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-03-16 15:54:13 -04:00
|
|
|
static CoglTexture *
|
2011-10-19 06:04:51 -04:00
|
|
|
create_dummy_texture (void)
|
|
|
|
{
|
|
|
|
/* Create a dummy 1x1 green texture to replace the color from the
|
|
|
|
vertex shader */
|
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 data[4] = { 0x00, 0xff, 0x00, 0xff };
|
2011-10-19 06:04:51 -04:00
|
|
|
|
2013-06-08 20:09:04 -04:00
|
|
|
return test_utils_texture_new_from_data (test_ctx,
|
|
|
|
1, 1, /* size */
|
|
|
|
TEST_UTILS_TEXTURE_NONE,
|
|
|
|
COGL_PIXEL_FORMAT_RGB_888,
|
|
|
|
4, /* rowstride */
|
|
|
|
data);
|
2011-10-19 06:04:51 -04:00
|
|
|
}
|
|
|
|
|
2011-05-05 18:34:38 -04:00
|
|
|
static void
|
2011-10-01 03:07:36 -04:00
|
|
|
paint_legacy (TestState *state)
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
|
|
|
CoglHandle material = cogl_material_new ();
|
2012-03-16 15:54:13 -04:00
|
|
|
CoglTexture *tex;
|
2011-05-05 18:34:38 -04:00
|
|
|
CoglColor color;
|
2019-06-18 02:02:10 -04:00
|
|
|
GError *error = NULL;
|
2011-05-05 18:34:38 -04:00
|
|
|
CoglHandle shader, program;
|
2011-10-01 03:07:36 -04:00
|
|
|
|
|
|
|
cogl_color_init_from_4ub (&color, 0, 0, 0, 255);
|
|
|
|
cogl_clear (&color, COGL_BUFFER_BIT_COLOR);
|
|
|
|
|
2011-05-05 18:34:38 -04:00
|
|
|
/* Set the primary vertex color as red */
|
|
|
|
cogl_color_set_from_4ub (&color, 0xff, 0x00, 0x00, 0xff);
|
|
|
|
cogl_material_set_color (material, &color);
|
|
|
|
|
|
|
|
/* Override the vertex color in the texture environment with a
|
2011-10-19 06:04:51 -04:00
|
|
|
constant green color provided by a texture */
|
|
|
|
tex = create_dummy_texture ();
|
|
|
|
cogl_material_set_layer (material, 0, tex);
|
2012-03-16 15:54:13 -04:00
|
|
|
cogl_object_unref (tex);
|
2011-05-05 18:34:38 -04:00
|
|
|
if (!cogl_material_set_layer_combine (material, 0,
|
2011-10-19 06:04:51 -04:00
|
|
|
"RGBA=REPLACE(TEXTURE)",
|
2011-05-05 18:34:38 -04:00
|
|
|
&error))
|
|
|
|
{
|
2011-10-19 06:04:51 -04:00
|
|
|
g_warning ("Error setting layer combine: %s", error->message);
|
2011-05-05 18:34:38 -04:00
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set up a dummy vertex shader that does nothing but the usual
|
|
|
|
fixed function transform */
|
|
|
|
shader = cogl_create_shader (COGL_SHADER_TYPE_VERTEX);
|
|
|
|
cogl_shader_source (shader,
|
|
|
|
"void\n"
|
|
|
|
"main ()\n"
|
|
|
|
"{\n"
|
|
|
|
" cogl_position_out = "
|
|
|
|
"cogl_modelview_projection_matrix * "
|
|
|
|
"cogl_position_in;\n"
|
|
|
|
" cogl_color_out = cogl_color_in;\n"
|
2011-10-19 06:04:51 -04:00
|
|
|
" cogl_tex_coord_out[0] = cogl_tex_coord_in;\n"
|
2011-05-05 18:34:38 -04:00
|
|
|
"}\n");
|
|
|
|
cogl_shader_compile (shader);
|
|
|
|
if (!cogl_shader_is_compiled (shader))
|
|
|
|
{
|
|
|
|
char *log = cogl_shader_get_info_log (shader);
|
|
|
|
g_warning ("Shader compilation failed:\n%s", log);
|
|
|
|
g_free (log);
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
program = cogl_create_program ();
|
|
|
|
cogl_program_attach_shader (program, shader);
|
|
|
|
cogl_program_link (program);
|
|
|
|
|
2019-02-20 08:51:12 -05:00
|
|
|
cogl_object_unref (shader);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
|
|
|
/* Draw something using the material */
|
|
|
|
cogl_set_source (material);
|
|
|
|
cogl_rectangle (0, 0, 50, 50);
|
|
|
|
|
|
|
|
/* Draw it again using the program. It should look exactly the same */
|
|
|
|
cogl_program_use (program);
|
|
|
|
cogl_rectangle (50, 0, 100, 50);
|
2019-02-20 08:53:01 -05:00
|
|
|
cogl_program_use (NULL);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2019-02-20 08:51:12 -05:00
|
|
|
cogl_object_unref (material);
|
|
|
|
cogl_object_unref (program);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-10-01 03:07:36 -04:00
|
|
|
paint (TestState *state)
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
2013-01-18 12:57:06 -05:00
|
|
|
CoglPipeline *pipeline = cogl_pipeline_new (test_ctx);
|
2012-03-16 15:54:13 -04:00
|
|
|
CoglTexture *tex;
|
2011-10-01 03:07:36 -04:00
|
|
|
CoglColor color;
|
2019-06-18 02:02:10 -04:00
|
|
|
GError *error = NULL;
|
2011-10-01 03:07:36 -04:00
|
|
|
CoglHandle shader, program;
|
|
|
|
|
|
|
|
cogl_color_init_from_4ub (&color, 0, 0, 0, 255);
|
|
|
|
cogl_clear (&color, COGL_BUFFER_BIT_COLOR);
|
|
|
|
|
|
|
|
/* Set the primary vertex color as red */
|
|
|
|
cogl_color_set_from_4ub (&color, 0xff, 0x00, 0x00, 0xff);
|
|
|
|
cogl_pipeline_set_color (pipeline, &color);
|
|
|
|
|
|
|
|
/* Override the vertex color in the texture environment with a
|
2011-10-19 06:04:51 -04:00
|
|
|
constant green color provided by a texture */
|
|
|
|
tex = create_dummy_texture ();
|
|
|
|
cogl_pipeline_set_layer_texture (pipeline, 0, tex);
|
2012-03-16 15:54:13 -04:00
|
|
|
cogl_object_unref (tex);
|
2011-10-01 03:07:36 -04:00
|
|
|
if (!cogl_pipeline_set_layer_combine (pipeline, 0,
|
2011-10-19 06:04:51 -04:00
|
|
|
"RGBA=REPLACE(TEXTURE)",
|
2011-10-01 03:07:36 -04:00
|
|
|
&error))
|
|
|
|
{
|
2011-10-19 06:04:51 -04:00
|
|
|
g_warning ("Error setting layer combine: %s", error->message);
|
2011-10-01 03:07:36 -04:00
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set up a dummy vertex shader that does nothing but the usual
|
|
|
|
fixed function transform */
|
|
|
|
shader = cogl_create_shader (COGL_SHADER_TYPE_VERTEX);
|
|
|
|
cogl_shader_source (shader,
|
|
|
|
"void\n"
|
|
|
|
"main ()\n"
|
|
|
|
"{\n"
|
|
|
|
" cogl_position_out = "
|
|
|
|
"cogl_modelview_projection_matrix * "
|
|
|
|
"cogl_position_in;\n"
|
|
|
|
" cogl_color_out = cogl_color_in;\n"
|
2011-10-19 06:04:51 -04:00
|
|
|
" cogl_tex_coord_out[0] = cogl_tex_coord_in;\n"
|
2011-10-01 03:07:36 -04:00
|
|
|
"}\n");
|
|
|
|
cogl_shader_compile (shader);
|
|
|
|
if (!cogl_shader_is_compiled (shader))
|
|
|
|
{
|
|
|
|
char *log = cogl_shader_get_info_log (shader);
|
|
|
|
g_warning ("Shader compilation failed:\n%s", log);
|
|
|
|
g_free (log);
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
program = cogl_create_program ();
|
|
|
|
cogl_program_attach_shader (program, shader);
|
|
|
|
cogl_program_link (program);
|
|
|
|
|
2019-02-20 08:51:12 -05:00
|
|
|
cogl_object_unref (shader);
|
2011-10-01 03:07:36 -04:00
|
|
|
|
|
|
|
/* Draw something without the program */
|
|
|
|
cogl_set_source (pipeline);
|
|
|
|
cogl_rectangle (0, 0, 50, 50);
|
|
|
|
|
|
|
|
/* Draw it again using the program. It should look exactly the same */
|
|
|
|
cogl_pipeline_set_user_program (pipeline, program);
|
2019-02-20 08:51:12 -05:00
|
|
|
cogl_object_unref (program);
|
2011-10-01 03:07:36 -04:00
|
|
|
|
|
|
|
cogl_rectangle (50, 0, 100, 50);
|
2019-02-20 08:53:01 -05:00
|
|
|
cogl_pipeline_set_user_program (pipeline, NULL);
|
2011-10-01 03:07:36 -04:00
|
|
|
|
|
|
|
cogl_object_unref (pipeline);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-03-16 15:54:13 -04:00
|
|
|
validate_result (CoglFramebuffer *framebuffer)
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
2011-10-01 03:07:36 -04:00
|
|
|
/* Non-shader version */
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_check_pixel (framebuffer, 25, 25, 0x00ff0000);
|
2011-10-01 03:07:36 -04:00
|
|
|
/* Shader version */
|
2012-03-16 15:54:13 -04:00
|
|
|
test_utils_check_pixel (framebuffer, 75, 25, 0x00ff0000);
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-03-16 15:54:13 -04:00
|
|
|
test_just_vertex_shader (void)
|
2011-05-05 18:34:38 -04:00
|
|
|
{
|
2011-10-01 03:07:36 -04:00
|
|
|
TestState state;
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2013-01-18 12:57:06 -05:00
|
|
|
cogl_framebuffer_orthographic (test_fb,
|
2012-03-16 15:54:13 -04:00
|
|
|
0, 0,
|
2013-01-18 12:57:06 -05:00
|
|
|
cogl_framebuffer_get_width (test_fb),
|
|
|
|
cogl_framebuffer_get_height (test_fb),
|
2012-03-16 15:54:13 -04:00
|
|
|
-1,
|
|
|
|
100);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-11-09 10:14:33 -05:00
|
|
|
/* XXX: we have to push/pop a framebuffer since this test currently
|
|
|
|
* uses the legacy cogl_rectangle() api. */
|
|
|
|
cogl_push_framebuffer (test_fb);
|
2012-03-16 15:54:13 -04:00
|
|
|
|
2012-11-09 10:14:33 -05:00
|
|
|
paint_legacy (&state);
|
|
|
|
validate_result (test_fb);
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-11-09 10:14:33 -05:00
|
|
|
paint (&state);
|
|
|
|
validate_result (test_fb);
|
2012-03-16 15:54:13 -04:00
|
|
|
|
2012-11-09 10:14:33 -05:00
|
|
|
cogl_pop_framebuffer ();
|
2011-05-05 18:34:38 -04:00
|
|
|
|
2012-11-09 10:14:33 -05:00
|
|
|
if (cogl_test_verbose ())
|
|
|
|
g_print ("OK\n");
|
2011-05-05 18:34:38 -04:00
|
|
|
}
|