mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-29 07:15:38 +00:00
18 lines
404 B
C#
18 lines
404 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using System.Drawing;
|
||
|
|
||
|
using OpenTK.Graphics.Text;
|
||
|
|
||
|
namespace OpenTK.Graphics.Text
|
||
|
{
|
||
|
interface IGlyphRasterizer
|
||
|
{
|
||
|
Bitmap Rasterize(Glyph glyph);
|
||
|
//void Rasterize(Glyph glyph, ref Bitmap bmp);
|
||
|
TextExtents MeasureText(TextBlock block);
|
||
|
RectangleF MeasureGlyph(Glyph glyph);
|
||
|
}
|
||
|
}
|