mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 14:41:25 +00:00
> test-display-resolution-changes.c:55:60: error: implicit conversion > increases floating-point precision: 'float' to 'double' > command->create_primary.width = 800 + sin((float)count / 6) * 200; > ~~~ ~~~~~~~~~~~~~^~~ > test-display-resolution-changes.c:56:61: error: implicit conversion > increases floating-point precision: 'float' to 'double' > command->create_primary.height = 600 + cos((float)count / 6) * 200; > ~~~ ~~~~~~~~~~~~~^~~ Signed-off-by: Victor Toso <victortoso@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
84 lines
2.1 KiB
C
84 lines
2.1 KiB
C
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
/*
|
|
Copyright (C) 2009-2015 Red Hat, Inc.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/**
|
|
* Recreate the primary surface endlessly.
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <math.h>
|
|
#include <stdlib.h>
|
|
#include "test-display-base.h"
|
|
|
|
static SpiceTimer *ping_timer;
|
|
|
|
static int ping_ms = 100;
|
|
|
|
static void pinger(void *opaque)
|
|
{
|
|
Test *test = opaque;
|
|
|
|
test->core->timer_start(ping_timer, ping_ms);
|
|
}
|
|
|
|
static void
|
|
set_primary_params(SPICE_GNUC_UNUSED Test *test, Command *command)
|
|
{
|
|
#if 0
|
|
static int toggle = 0;
|
|
|
|
if (toggle) {
|
|
*arg1 = 800;
|
|
*arg2 = 600;
|
|
} else {
|
|
*arg1 = 1024;
|
|
*arg2 = 768;
|
|
}
|
|
toggle = 1 - toggle;
|
|
#endif
|
|
static int count = 0;
|
|
|
|
command->create_primary.width = 800 + sin(count / 6.0) * 200;
|
|
command->create_primary.height = 600 + cos(count / 6.0) * 200;
|
|
count++;
|
|
}
|
|
|
|
static Command commands[] = {
|
|
{DESTROY_PRIMARY, NULL, .cb_opaque = NULL,},
|
|
{CREATE_PRIMARY, set_primary_params, .cb_opaque = NULL},
|
|
};
|
|
|
|
int main(void)
|
|
{
|
|
SpiceCoreInterface *core;
|
|
Test *test;
|
|
|
|
core = basic_event_loop_init();
|
|
test = test_new(core);
|
|
//spice_server_set_image_compression(server, SPICE_IMAGE_COMPRESSION_OFF);
|
|
test_add_display_interface(test);
|
|
test_set_command_list(test, commands, G_N_ELEMENTS(commands));
|
|
|
|
ping_timer = core->timer_add(pinger, test);
|
|
core->timer_start(ping_timer, ping_ms);
|
|
|
|
basic_event_loop_mainloop();
|
|
test_destroy(test);
|
|
|
|
return 0;
|
|
}
|