rsurface.h 528 B

123456789101112131415161718192021222324
  1. /*
  2. *
  3. * © 2016 and later: Unicode, Inc. and others.
  4. * License & terms of use: http://www.unicode.org/copyright.html#License
  5. *
  6. * (C) Copyright IBM Corp. 1998-2007 - All Rights Reserved
  7. *
  8. */
  9. #ifndef __RSURFACE_H
  10. #define __RSURFACE_H
  11. #include "loengine.h"
  12. typedef void rs_surface;
  13. U_CDECL_BEGIN
  14. void rs_drawGlyphs(rs_surface *surface, const le_font *font, const LEGlyphID *glyphs, le_int32 count,
  15. const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height);
  16. U_CDECL_END
  17. #endif