diff options
Diffstat (limited to 'src/guilib/GUIFontTTFGL.h')
-rw-r--r-- | src/guilib/GUIFontTTFGL.h | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/guilib/GUIFontTTFGL.h b/src/guilib/GUIFontTTFGL.h new file mode 100644 index 0000000000..c0bb53af94 --- /dev/null +++ b/src/guilib/GUIFontTTFGL.h @@ -0,0 +1,67 @@ +/* + * Copyright (C) 2005-2013 Team XBMC + * http://xbmc.org + * + * This Program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This Program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with XBMC; see the file COPYING. If not, see + * <http://www.gnu.org/licenses/>. + * + */ + +/*! +\file GUIFont.h +\brief +*/ + +#ifndef CGUILIB_GUIFONTTTF_GL_H +#define CGUILIB_GUIFONTTTF_GL_H +#pragma once + + +#include "GUIFontTTF.h" + + +/*! + \ingroup textures + \brief + */ +class CGUIFontTTFGL : public CGUIFontTTFBase +{ +public: + CGUIFontTTFGL(const CStdString& strFileName); + virtual ~CGUIFontTTFGL(void); + + virtual void Begin(); + virtual void End(); + +protected: + virtual CBaseTexture* ReallocTexture(unsigned int& newHeight); + virtual bool CopyCharToTexture(FT_BitmapGlyph bitGlyph, unsigned int x1, unsigned int y1, unsigned int x2, unsigned int y2); + virtual void DeleteHardwareTexture(); + +private: + unsigned int m_updateY1; + unsigned int m_updateY2; + + enum TextureStatus + { + TEXTURE_VOID = 0, + TEXTURE_READY, + TEXTURE_REALLOCATED, + TEXTURE_UPDATED, + }; + + TextureStatus m_textureStatus; +}; + +#endif |