2008-06-13 Emmanuele Bassi <ebassi@openedhand.com>
* tests/test-cogl-offscreen.c: * tests/test-cogl-primitives.c: * tests/test-cogl-tex-convert.c: * tests/test-cogl-tex-foreign.c: * tests/test-cogl-tex-getset.c: * tests/test-cogl-tex-tile.c: * tests/test-layout.c: * tests/test-pixmap.c: * tests/test-texture-quality.c: Miscellaneous fixes for distcheck to pass.
This commit is contained in:
parent
4b97a02410
commit
81861656e8
@ -198,9 +198,6 @@ main (int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
ClutterActor *stage;
|
ClutterActor *stage;
|
||||||
ClutterActor *coglbox;
|
ClutterActor *coglbox;
|
||||||
ClutterTimeline *timeline;
|
|
||||||
ClutterBehaviour *behave;
|
|
||||||
ClutterAlpha *alpha;
|
|
||||||
|
|
||||||
clutter_init(&argc, &argv);
|
clutter_init(&argc, &argv);
|
||||||
|
|
||||||
|
@ -194,12 +194,12 @@ test_coglbox_paint(ClutterActor *self)
|
|||||||
{
|
{
|
||||||
timer = g_timer_new ();
|
timer = g_timer_new ();
|
||||||
g_timer_start (timer);
|
g_timer_start (timer);
|
||||||
paint_index = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (g_timer_elapsed (timer, NULL) >= 1)
|
if (g_timer_elapsed (timer, NULL) >= 1)
|
||||||
{
|
{
|
||||||
paint_index = (++paint_index) % NUM_PAINT_FUNCS;
|
paint_index += 1;
|
||||||
|
paint_index = paint_index % NUM_PAINT_FUNCS;
|
||||||
g_timer_start (timer);
|
g_timer_start (timer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -196,25 +196,11 @@ test_coglbox_new (void)
|
|||||||
return g_object_new (TEST_TYPE_COGLBOX, NULL);
|
return g_object_new (TEST_TYPE_COGLBOX, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
frame_cb (ClutterTimeline *timeline,
|
|
||||||
gint frame_num,
|
|
||||||
gpointer data)
|
|
||||||
{
|
|
||||||
TestCoglboxPrivate *priv = TEST_COGLBOX_GET_PRIVATE (data);
|
|
||||||
|
|
||||||
priv->frame = frame_num;
|
|
||||||
clutter_actor_queue_redraw (CLUTTER_ACTOR (data));
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char *argv[])
|
main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
ClutterActor *stage;
|
ClutterActor *stage;
|
||||||
ClutterActor *coglbox;
|
ClutterActor *coglbox;
|
||||||
ClutterTimeline *timeline;
|
|
||||||
ClutterBehaviour *behave;
|
|
||||||
ClutterAlpha *alpha;
|
|
||||||
|
|
||||||
clutter_init(&argc, &argv);
|
clutter_init(&argc, &argv);
|
||||||
|
|
||||||
|
@ -192,9 +192,6 @@ main (int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
ClutterActor *stage;
|
ClutterActor *stage;
|
||||||
ClutterActor *coglbox;
|
ClutterActor *coglbox;
|
||||||
ClutterTimeline *timeline;
|
|
||||||
ClutterBehaviour *behave;
|
|
||||||
ClutterAlpha *alpha;
|
|
||||||
|
|
||||||
clutter_init(&argc, &argv);
|
clutter_init(&argc, &argv);
|
||||||
|
|
||||||
|
@ -250,9 +250,6 @@ main (int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
ClutterActor *stage;
|
ClutterActor *stage;
|
||||||
ClutterActor *coglbox;
|
ClutterActor *coglbox;
|
||||||
ClutterTimeline *timeline;
|
|
||||||
ClutterBehaviour *behave;
|
|
||||||
ClutterAlpha *alpha;
|
|
||||||
|
|
||||||
clutter_init(&argc, &argv);
|
clutter_init(&argc, &argv);
|
||||||
|
|
||||||
|
@ -198,8 +198,6 @@ main (int argc, char *argv[])
|
|||||||
ClutterActor *stage;
|
ClutterActor *stage;
|
||||||
ClutterActor *coglbox;
|
ClutterActor *coglbox;
|
||||||
ClutterTimeline *timeline;
|
ClutterTimeline *timeline;
|
||||||
ClutterBehaviour *behave;
|
|
||||||
ClutterAlpha *alpha;
|
|
||||||
|
|
||||||
clutter_init(&argc, &argv);
|
clutter_init(&argc, &argv);
|
||||||
|
|
||||||
|
@ -563,11 +563,10 @@ my_thing_new (gint padding,
|
|||||||
|
|
||||||
/* test code */
|
/* test code */
|
||||||
|
|
||||||
static ClutterActor *stage = NULL;
|
static ClutterActor *box = NULL;
|
||||||
static ClutterActor *box = NULL;
|
static ClutterActor *icon = NULL;
|
||||||
static ClutterActor *icon = NULL;
|
static ClutterTimeline *main_timeline = NULL;
|
||||||
static ClutterTimeline *timeline = NULL;
|
static ClutterBehaviour *behaviour = NULL;
|
||||||
static ClutterBehaviour *behaviour = NULL;
|
|
||||||
|
|
||||||
static ClutterColor bg_color;
|
static ClutterColor bg_color;
|
||||||
|
|
||||||
@ -623,7 +622,7 @@ decrease_property_value (ClutterActor *actor,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static ClutterActor *
|
static ClutterActor *
|
||||||
create_item()
|
create_item (void)
|
||||||
{
|
{
|
||||||
ClutterActor *clone =
|
ClutterActor *clone =
|
||||||
clutter_clone_texture_new (CLUTTER_TEXTURE (icon));
|
clutter_clone_texture_new (CLUTTER_TEXTURE (icon));
|
||||||
@ -638,7 +637,7 @@ create_item()
|
|||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
keypress_cb (ClutterStage *stage,
|
keypress_cb (ClutterActor *actor,
|
||||||
ClutterKeyEvent *event,
|
ClutterKeyEvent *event,
|
||||||
gpointer data)
|
gpointer data)
|
||||||
{
|
{
|
||||||
@ -709,17 +708,19 @@ keypress_cb (ClutterStage *stage,
|
|||||||
|
|
||||||
case CLUTTER_z:
|
case CLUTTER_z:
|
||||||
{
|
{
|
||||||
if (clutter_timeline_is_playing (timeline))
|
if (clutter_timeline_is_playing (main_timeline))
|
||||||
clutter_timeline_pause (timeline);
|
clutter_timeline_pause (main_timeline);
|
||||||
else
|
else
|
||||||
clutter_timeline_start (timeline);
|
clutter_timeline_start (main_timeline);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -746,7 +747,7 @@ int
|
|||||||
main (int argc,
|
main (int argc,
|
||||||
char *argv[])
|
char *argv[])
|
||||||
{
|
{
|
||||||
ClutterActor *instructions;
|
ClutterActor *stage, *instructions;
|
||||||
gint i;
|
gint i;
|
||||||
GError *error = NULL;
|
GError *error = NULL;
|
||||||
|
|
||||||
@ -757,13 +758,13 @@ main (int argc,
|
|||||||
|
|
||||||
clutter_color_parse ("Red", &bg_color);
|
clutter_color_parse ("Red", &bg_color);
|
||||||
|
|
||||||
timeline = clutter_timeline_new_for_duration (2000);
|
main_timeline = clutter_timeline_new_for_duration (2000);
|
||||||
clutter_timeline_set_loop (timeline, TRUE);
|
clutter_timeline_set_loop (main_timeline, TRUE);
|
||||||
g_signal_connect (timeline, "new-frame",
|
g_signal_connect (main_timeline, "new-frame",
|
||||||
G_CALLBACK (relayout_on_frame),
|
G_CALLBACK (relayout_on_frame),
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
behaviour = clutter_behaviour_scale_new (clutter_alpha_new_full (timeline,
|
behaviour = clutter_behaviour_scale_new (clutter_alpha_new_full (main_timeline,
|
||||||
CLUTTER_ALPHA_SINE,
|
CLUTTER_ALPHA_SINE,
|
||||||
NULL, NULL),
|
NULL, NULL),
|
||||||
1.0, 1.0, 2.0, 2.0);
|
1.0, 1.0, 2.0, 2.0);
|
||||||
@ -810,7 +811,7 @@ main (int argc,
|
|||||||
|
|
||||||
clutter_main ();
|
clutter_main ();
|
||||||
|
|
||||||
g_object_unref (timeline);
|
g_object_unref (main_timeline);
|
||||||
g_object_unref (behaviour);
|
g_object_unref (behaviour);
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#if HAVE_CLUTTER_GLX
|
#if HAVE_CLUTTER_GLX
|
||||||
|
|
||||||
#include <clutter/clutter.h>
|
#include <clutter/clutter.h>
|
||||||
@ -12,7 +15,6 @@
|
|||||||
|
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
#include <X11/extensions/Xcomposite.h>
|
#include <X11/extensions/Xcomposite.h>
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
#define IMAGE "redhand.png"
|
#define IMAGE "redhand.png"
|
||||||
|
|
||||||
@ -35,6 +37,8 @@ stage_press_cb (ClutterActor *actor,
|
|||||||
&gc_values);
|
&gc_values);
|
||||||
|
|
||||||
XDrawLine (dpy, pxm, gc, 0, 0, 100, 100);
|
XDrawLine (dpy, pxm, gc, 0, 0, 100, 100);
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -144,7 +148,6 @@ main (int argc, char **argv)
|
|||||||
# ifdef USE_GDKPIXBUF
|
# ifdef USE_GDKPIXBUF
|
||||||
ClutterActor *stage, *tex;
|
ClutterActor *stage, *tex;
|
||||||
Pixmap pixmap;
|
Pixmap pixmap;
|
||||||
guint w, h, d;
|
|
||||||
const ClutterColor gry = { 0x99, 0x99, 0x99, 0xFF };
|
const ClutterColor gry = { 0x99, 0x99, 0x99, 0xFF };
|
||||||
Window win_remote;
|
Window win_remote;
|
||||||
|
|
||||||
@ -201,8 +204,9 @@ main (int argc, char **argv)
|
|||||||
clutter_main ();
|
clutter_main ();
|
||||||
# endif /* USE_GDKPIXBUF */
|
# endif /* USE_GDKPIXBUF */
|
||||||
|
|
||||||
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
#else /* HAVE_CLUTTER_GLX */
|
#else /* HAVE_CLUTTER_GLX */
|
||||||
int main(int argc, char **argv){return 0;};
|
int main (int argc, char **argv) { return EXIT_SUCCESS; };
|
||||||
#endif /* HAVE_CLUTTER_GLX */
|
#endif /* HAVE_CLUTTER_GLX */
|
||||||
|
@ -62,10 +62,11 @@ main (int argc, char *argv[])
|
|||||||
error = NULL;
|
error = NULL;
|
||||||
image = clutter_texture_new_from_file (argv[1]?argv[1]:"redhand.png", &error);
|
image = clutter_texture_new_from_file (argv[1]?argv[1]:"redhand.png", &error);
|
||||||
if (error)
|
if (error)
|
||||||
g_error ("Unable to load image.", error->message);
|
g_error ("Unable to load image: %s", error->message);
|
||||||
|
|
||||||
if (!argv[1])
|
if (!argv[1])
|
||||||
g_print ("Hint: the redhand.png isn't a good test image for this, this test can take any clutter loadable image as an argument\n");
|
g_print ("Hint: the redhand.png isn't a good test image for this test.\n"
|
||||||
|
"This test can take any clutter loadable image as an argument\n");
|
||||||
|
|
||||||
/* center the image */
|
/* center the image */
|
||||||
clutter_actor_set_position (image,
|
clutter_actor_set_position (image,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user