blob: 50d025a21b89a72a53978a3f5ba9714558713656 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef OGL_TEXTURECACHE_HXX
#define OGL_TEXTURECACHE_HXX
#include <sal/types.h>
#include <boost/unordered_map.hpp>
namespace com { namespace sun { namespace star {
namespace geometry { struct IntegerSize2D; }
}}}
namespace oglcanvas
{
class TextureCache
{
public:
TextureCache();
~TextureCache();
/// clear whole cache, reset statistic counters
void flush();
/** prune old entries from cache
Everytime this method is called, all cache entries are set
to "old". If subsequently not used by getTexture(),
they'll be entitled for expunge on the next prune()
call. Resets statistic counters.
*/
void prune();
/// Statistics
size_t getCacheSize() const { return maCache.size(); };
sal_uInt32 getCacheMissCount() const { return mnMissCount; }
sal_uInt32 getCacheHitCount() const { return mnHitCount; }
unsigned int getTexture( const ::com::sun::star::geometry::IntegerSize2D& rPixelSize,
const sal_Int8* pPixel,
sal_uInt32 nPixelCrc32) const;
private:
struct CacheEntry
{
CacheEntry() : nTexture(0), bOld(false) {}
unsigned int nTexture;
bool bOld;
};
typedef boost::unordered_map<sal_uInt32,CacheEntry> TextureCacheMapT;
mutable TextureCacheMapT maCache;
mutable sal_uInt32 mnMissCount;
mutable sal_uInt32 mnHitCount;
};
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|