Files
libreoffice/canvas/source/opengl/ogl_texturecache.hxx
Andrea Gelmini da40cac540 Fix common typos. No automatic tools. Handmade…
Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959
Reviewed-on: https://gerrit.libreoffice.org/12164
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-11-12 11:04:11 +00:00

65 lines
2.1 KiB
C++

/* -*- 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 INCLUDED_CANVAS_SOURCE_OPENGL_OGL_TEXTURECACHE_HXX
#define INCLUDED_CANVAS_SOURCE_OPENGL_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
Every time 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: */