D3DXCreateFont
Creates a font object for a device and font.
HRESULT D3DXCreateFont(
LPDIRECT3DDEVICE9 pDevice,
INT Height,
UINT Width,
UINT Weight,
UINT MipLevels,
BOOL Italic,
DWORD CharSet,
DWORD OutputPrecision,
DWORD Quality,
DWORD PitchAndFamily,
LPCTSTR pFacename,
LPD3DXFONT * ppFont
);
Parameters
- pDevice
- [in] Pointer to an IDirect3DDevice9 interface, the device to be associated with the font object.
- Height
- [in] The height of the characters in logical units.
- Width
- [in] The width of the characters in logical units.
- Weight
- [in] Typeface weight. One example is bold.
- MipLevels
- [in] The number of mipmap levels.
- Italic
- [in] True for italic font, false otherwise.
- CharSet
- [in] The character set of the font.
- OutputPrecision
- [in] Specifies how Windows should attempt to match the desired font sizes and characteristics with actual fonts. Use OUT_TT_ONLY_PRECIS for instance, to ensure that you always get a TrueType font.
- Quality
- [in] Specifies how Windows should match the desired font with a real font. It applies to raster fonts only and should not affect TrueType fonts.
- PitchAndFamily
- [in] Pitch and family index.
- pFacename
- [in] String containing the typeface name. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.
- ppFont
- [out] Returns a pointer to an ID3DXFont interface, representing the created font object.
Return Values
If the function succeeds, the return value is S_OK. If the function fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.
Remarks
The compiler setting also determines the function version. If Unicode is defined, the function call resolves to D3DXCreateFontW. Otherwise, the function call resolves to D3DXCreateFontA because ANSI strings are being used.
If you want more information about font parameters, see The Logical Font.
Requirements
Header: Declared in D3dx9core.h.