mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-07 20:00:20 +00:00
server/red_worker/red_process_commands: rename drawable to red_drawable (later add a local drawable)
This commit is contained in:
parent
c8cefd4a8f
commit
bab771c10d
@ -4843,15 +4843,15 @@ static int red_process_commands(RedWorker *worker, uint32_t max_pipe_size, int *
|
||||
worker->repoll_cmd_ring = 0;
|
||||
switch (ext_cmd.cmd.type) {
|
||||
case QXL_CMD_DRAW: {
|
||||
RedDrawable *drawable = red_drawable_new(); // returns with 1 ref
|
||||
RedDrawable *red_drawable = red_drawable_new(); // returns with 1 ref
|
||||
|
||||
if (red_get_drawable(&worker->mem_slots, ext_cmd.group_id,
|
||||
drawable, ext_cmd.cmd.data, ext_cmd.flags)) {
|
||||
red_drawable, ext_cmd.cmd.data, ext_cmd.flags)) {
|
||||
break;
|
||||
}
|
||||
red_process_drawable(worker, drawable, ext_cmd.group_id);
|
||||
red_process_drawable(worker, red_drawable, ext_cmd.group_id);
|
||||
// release the red_drawable
|
||||
put_red_drawable(worker, drawable, ext_cmd.group_id, NULL);
|
||||
put_red_drawable(worker, red_drawable, ext_cmd.group_id, NULL);
|
||||
break;
|
||||
}
|
||||
case QXL_CMD_UPDATE: {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user