diff options
author | Søren Sandmann Pedersen <ssp@redhat.com> | 2012-01-17 11:35:04 -0500 |
---|---|---|
committer | Søren Sandmann <ssp@redhat.com> | 2012-01-27 10:33:12 -0500 |
commit | 8ab5b7e0faa12bf5aa1575c5fd11230284f68d71 (patch) | |
tree | 68ee0a3b3de90a14cb2a5b7c87994338cef07d19 /src/qxl.h | |
parent | 57b5d7a1a20fb4f138131e644251d1a49ede94c8 (diff) |
Enable caching of images based on the configuration options
Diffstat (limited to 'src/qxl.h')
-rw-r--r-- | src/qxl.h | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -389,13 +389,14 @@ get_ram_header (qxl_screen_t *qxl) * Images */ struct QXLImage *qxl_image_create (qxl_screen_t *qxl, - const uint8_t *data, - int x, - int y, - int width, - int height, - int stride, - int Bpp); + const uint8_t *data, + int x, + int y, + int width, + int height, + int stride, + int Bpp, + Bool fallback); void qxl_image_destroy (qxl_screen_t *qxl, struct QXLImage *image); void qxl_drop_image_cache (qxl_screen_t *qxl); |