]>
git.saurik.com Git - apple/icu.git/blob - icuSources/samples/layout/RenderingSurface.h
2 *******************************************************************************
4 * Copyright (C) 1999-2003, International Business Machines
5 * Corporation and others. All Rights Reserved.
7 *******************************************************************************
8 * file name: RenderingFontInstance.h
10 * created on: 02/20/2003
11 * created by: Eric R. Mader
14 #ifndef __RENDERINGSURFACE_H
15 #define __RENDERINGSURFACE_H
17 #include "layout/LETypes.h"
18 #include "layout/LEFontInstance.h"
20 class RenderingSurface
23 RenderingSurface() {};
24 virtual ~RenderingSurface() {};
26 virtual void drawGlyphs(const LEFontInstance
*font
, const LEGlyphID
*glyphs
, le_int32 count
,
27 const float *positions
, le_int32 x
, le_int32 y
, le_int32 width
, le_int32 height
) = 0;