kc3-lang/ftgl/src/FTFont

Branch :


Log

Author Commit Date CI Message
778b8f21 2019-05-24 23:58:47 src/FTFont/FTBufferFont.cpp, src/FTFont/FTTextureFont.cpp: GL_TEXTURE_ENV_MODE is not valid mask for glPushAttrib. Use GL_TEXTURE_BIT instead to avoid leaking texture env mode. (reported by Eddie-cz, https://github.com/frankheckenbach/ftgl/issues/3)
c261e7bd 2019-02-07 22:03:32 implement LegacyOpenGLState, see README-LegacyOpenGLState
936719bc 2018-05-06 23:42:33 Correct a typo in a comment.
d7d4594e 2012-06-13 21:27:56 added polygon extraction
5c9dbfd7 2011-05-21 09:51:18 FTFont: replace glTexEnvf with glTexEnvi where appropriate. Fix courtesy of Bill Robinson <airbaggins@gmail.com>.
9a13e4f8 2010-09-28 19:01:23 implement a quick check for __FUNCTION__ and __func__ based on whether the compiler can actually use one or the other at runtime. cache the checks and provide __FUNC__ for use via FTGL_CPP_FUNC.
42d104ae 2010-09-16 22:40:57 Fix a few compiler warnings, patch courtesy of packadal@gmail.com.
488765fb 2010-05-23 17:50:29 Set proper polygon mode in FTPixmapFont, to fix rendering on OS X. Fix courtesy of Duncan Murdoch, from SF patch #2023536.
aaef5c16 2010-05-23 14:20:37 Enforce GL_POLYGON_BIT in FTPolygonFont, so that the caller's context does not interfere with our rendering. Addresses SF bug #2021485.
cc4f28ba 2010-05-23 00:34:49 Set GL_TEXTURE_ENV_MODE to GL_MODULATE whenever necessary, to avoid rendering an empty rectangle. Addresses SF bug #2253040.