EFontFlags: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
m (→‎top: clean up, added deadend tag)
 
Line 1: Line 1:
{{Dead end|date=January 2024}}
The flags contained in '''EFontFlags''' are used to create a font that will be used for drawing.
The flags contained in '''EFontFlags''' are used to create a font that will be used for drawing.
  enum '''EFontFlags'''
  enum '''EFontFlags'''
Line 16: Line 18:
    never fall back to asian compatibility mode
    never fall back to asian compatibility mode
  };
  };
[[Category:ISurface]]
[[Category:ISurface]]

Latest revision as of 10:02, 21 January 2024

Dead End - Icon.png
This article has no Wikipedia icon links to other VDC articles. Please help improve this article by adding links Wikipedia icon that are relevant to the context within the existing text.
January 2024

The flags contained in EFontFlags are used to create a font that will be used for drawing.

enum EFontFlags
{
	FONTFLAG_NONE,
	FONTFLAG_ITALIC			= 0x001,
	FONTFLAG_UNDERLINE		= 0x002,
	FONTFLAG_STRIKEOUT		= 0x004,
	FONTFLAG_SYMBOL			= 0x008,
	FONTFLAG_ANTIALIAS		= 0x010,
	FONTFLAG_GAUSSIANBLUR		= 0x020,
	FONTFLAG_ROTARY			= 0x040,
	FONTFLAG_DROPSHADOW		= 0x080,
	FONTFLAG_ADDITIVE		= 0x100,
	FONTFLAG_OUTLINE		= 0x200,
	FONTFLAG_CUSTOM			= 0x400,	// custom generated font -
							   never fall back to asian compatibility mode
};