1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 #ifndef INCLUDED_VCL_INC_OPENGL_FIXEDTEXTUREATLAS_HXX
12 #define INCLUDED_VCL_INC_OPENGL_FIXEDTEXTUREATLAS_HXX
15 #include <opengl/texture.hxx>
19 class FixedTextureAtlasManager final
21 std::vector
<std::unique_ptr
<FixedTexture
>> maFixedTextures
;
23 int const mWidthFactor
;
24 int const mHeightFactor
;
25 int const mSubTextureSize
;
27 void CreateNewTexture();
29 FixedTextureAtlasManager( const FixedTextureAtlasManager
& ) = delete;
30 FixedTextureAtlasManager
& operator=( const FixedTextureAtlasManager
& ) = delete;
33 FixedTextureAtlasManager(int nWidthFactor
, int nHeightFactor
, int nTextureSize
);
34 ~FixedTextureAtlasManager();
36 OpenGLTexture
InsertBuffer(int nWidth
, int nHeight
, int nFormat
, int nType
, sal_uInt8
const * pData
);
37 OpenGLTexture
Reserve(int nWidth
, int nHeight
);
39 int GetSubtextureSize() const
41 return mSubTextureSize
;
45 #endif // INCLUDED_VCL_INC_OPENGL_FIXEDTEXTUREATLAS_HXX
47 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */