2007-11-10 23:29:25 +00:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-11-06 20:59:15 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
using OpenTK.Math;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Fonts
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Defines the interface for TextPrinter implementations.
|
|
|
|
|
/// </summary>
|
|
|
|
|
interface ITextPrinterImplementation
|
|
|
|
|
{
|
2008-01-06 02:19:53 +00:00
|
|
|
|
TextHandle Load(Vector2[] vertices, ushort[] indices, int index_count);
|
2007-11-06 20:59:15 +00:00
|
|
|
|
void Draw(TextHandle handle);
|
2008-02-02 12:29:21 +00:00
|
|
|
|
void Draw(Vector2[] vertices, ushort[] indices, int index_count);
|
2007-11-06 20:59:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|