summaryrefslogtreecommitdiff
path: root/platform/winrt/mupdfwinrt/Cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/winrt/mupdfwinrt/Cache.h')
-rw-r--r--platform/winrt/mupdfwinrt/Cache.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/platform/winrt/mupdfwinrt/Cache.h b/platform/winrt/mupdfwinrt/Cache.h
deleted file mode 100644
index e8c9801d..00000000
--- a/platform/winrt/mupdfwinrt/Cache.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#pragma once
-
-#include <mutex>
-extern "C" {
- #include "mupdf/fitz.h"
-}
-
-#define MAX_DISPLAY_CACHE_SIZE 3
-
-typedef struct cache_entry_s cache_entry_t;
-
-struct cache_entry_s
-{
- int number;
- int width;
- int height;
- fz_display_list *dlist;
- cache_entry_t *next;
- cache_entry_t *prev;
- int index;
-};
-
-class Cache
-{
-private:
- int size;
- cache_entry_t *head;
- cache_entry_t *tail;
- std::mutex cache_lock;
-
-public:
- Cache(void);
- ~Cache(void);
- void GetSize(int *width, int *height);
- fz_display_list* Use(int value, int *width, int *height, fz_context *mu_ctx);
- void Add(int value, int width, int height, fz_display_list *dlist, fz_context *mu_ctx);
- void Empty(fz_context *mu_ctx);
-};