mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 22:48:19 +00:00
The new _ASYNC io's in qxl_dev listed at the end get six new api
functions, and an additional callback function "async_complete". When
the async version of a specific io is used, completion is notified by
calling async_complete, and no READY message is written or expected by
the dispatcher.
update_area has been changed to push QXLRects to the worker thread, where
the conversion to SpiceRect takes place.
A cookie has been added to each async call to QXLWorker, and is passed back via
async_complete.
Added api:
QXLWorker:
update_area_async
add_memslot_async
destroy_surfaces_async
destroy_primary_surface_async
create_primary_surface_async
destroy_surface_wait_async
QXLInterface:
async_complete
137 lines
3.7 KiB
C
137 lines
3.7 KiB
C
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
/*
|
|
Copyright (C) 2009,2010 Red Hat, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef RED_ABI_TRANSLATE_H
|
|
#define RED_ABI_TRANSLATE_H
|
|
|
|
#include <spice/qxl_dev.h>
|
|
#include "red_common.h"
|
|
#include "red_memslots.h"
|
|
|
|
typedef struct RedDrawable {
|
|
QXLReleaseInfo *release_info;
|
|
uint32_t surface_id;
|
|
uint8_t effect;
|
|
uint8_t type;
|
|
uint8_t self_bitmap;
|
|
SpiceRect self_bitmap_area;
|
|
SpiceRect bbox;
|
|
SpiceClip clip;
|
|
uint32_t mm_time;
|
|
int32_t surfaces_dest[3];
|
|
SpiceRect surfaces_rects[3];
|
|
union {
|
|
SpiceFill fill;
|
|
SpiceOpaque opaque;
|
|
SpiceCopy copy;
|
|
SpiceTransparent transparent;
|
|
SpiceAlphaBlend alpha_blend;
|
|
struct {
|
|
SpicePoint src_pos;
|
|
} copy_bits;
|
|
SpiceBlend blend;
|
|
SpiceRop3 rop3;
|
|
SpiceStroke stroke;
|
|
SpiceText text;
|
|
SpiceBlackness blackness;
|
|
SpiceInvers invers;
|
|
SpiceWhiteness whiteness;
|
|
} u;
|
|
} RedDrawable;
|
|
|
|
typedef struct RedUpdateCmd {
|
|
QXLReleaseInfo *release_info;
|
|
SpiceRect area;
|
|
uint32_t update_id;
|
|
uint32_t surface_id;
|
|
} RedUpdateCmd;
|
|
|
|
typedef struct RedMessage {
|
|
QXLReleaseInfo *release_info;
|
|
uint8_t *data;
|
|
} RedMessage;
|
|
|
|
typedef struct RedDataChunk RedDataChunk;
|
|
struct RedDataChunk {
|
|
uint32_t data_size;
|
|
RedDataChunk *prev_chunk;
|
|
RedDataChunk *next_chunk;
|
|
uint8_t *data;
|
|
};
|
|
|
|
typedef struct RedSurfaceCreate {
|
|
uint32_t format;
|
|
uint32_t width;
|
|
uint32_t height;
|
|
int32_t stride;
|
|
uint8_t *data;
|
|
} RedSurfaceCreate;
|
|
|
|
typedef struct RedSurfaceCmd {
|
|
QXLReleaseInfo *release_info;
|
|
uint32_t surface_id;
|
|
uint8_t type;
|
|
uint32_t flags;
|
|
union {
|
|
RedSurfaceCreate surface_create;
|
|
} u;
|
|
} RedSurfaceCmd;
|
|
|
|
typedef struct RedCursorCmd {
|
|
QXLReleaseInfo *release_info;
|
|
uint8_t type;
|
|
union {
|
|
struct {
|
|
SpicePoint16 position;
|
|
uint8_t visible;
|
|
SpiceCursor shape;
|
|
} set;
|
|
struct {
|
|
uint16_t length;
|
|
uint16_t frequency;
|
|
} trail;
|
|
SpicePoint16 position;
|
|
} u;
|
|
uint8_t *device_data;
|
|
} RedCursorCmd;
|
|
|
|
void red_get_rect_ptr(SpiceRect *red, const QXLRect *qxl);
|
|
|
|
void red_get_drawable(RedMemSlotInfo *slots, int group_id,
|
|
RedDrawable *red, QXLPHYSICAL addr, uint32_t flags);
|
|
void red_put_drawable(RedDrawable *red);
|
|
void red_put_image(SpiceImage *red);
|
|
|
|
void red_get_update_cmd(RedMemSlotInfo *slots, int group_id,
|
|
RedUpdateCmd *red, QXLPHYSICAL addr);
|
|
void red_put_update_cmd(RedUpdateCmd *red);
|
|
|
|
void red_get_message(RedMemSlotInfo *slots, int group_id,
|
|
RedMessage *red, QXLPHYSICAL addr);
|
|
void red_put_message(RedMessage *red);
|
|
|
|
void red_get_surface_cmd(RedMemSlotInfo *slots, int group_id,
|
|
RedSurfaceCmd *red, QXLPHYSICAL addr);
|
|
void red_put_surface_cmd(RedSurfaceCmd *red);
|
|
|
|
void red_get_cursor_cmd(RedMemSlotInfo *slots, int group_id,
|
|
RedCursorCmd *red, QXLPHYSICAL addr);
|
|
void red_put_cursor_cmd(RedCursorCmd *red);
|
|
|
|
#endif
|