[client] egl: implemented SPICE display support

This commit is contained in:
Geoffrey McRae
2022-05-22 18:19:58 +10:00
parent 6699018ed1
commit 247e867f18
17 changed files with 273 additions and 86 deletions

View File

@@ -52,6 +52,7 @@ typedef struct
int width, height;
int stride;
uint8_t * data;
bool topDown;
}
drawBitmap;
};
@@ -69,4 +70,4 @@ void renderQueue_spiceDrawFill(int x, int y, int width, int height,
uint32_t color);
void renderQueue_spiceDrawBitmap(int x, int y, int width, int height, int stride,
void * data);
void * data, bool topDown);