From 50be5c9746854adcdb5b45b75955b57f18f98fe5 Mon Sep 17 00:00:00 2001 From: chai Date: Tue, 23 Oct 2018 13:07:57 +0800 Subject: *draw->render --- src/libjin/Graphics/Font/je_font.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libjin/Graphics/Font/je_font.h') diff --git a/src/libjin/Graphics/Font/je_font.h b/src/libjin/Graphics/Font/je_font.h index 2e9206b..42f83b6 100644 --- a/src/libjin/Graphics/Font/je_font.h +++ b/src/libjin/Graphics/Font/je_font.h @@ -63,7 +63,7 @@ namespace JinEngine /// @param x X value of the position. /// @param y Y value of the position. /// - virtual void print(const Page* page, int x, int y) = 0; + virtual void render(const Page* page, int x, int y) = 0; /// /// Render unicode codepoints to given position. @@ -74,7 +74,7 @@ namespace JinEngine /// @param lineheight Line height of the content. /// @param spacing Spacing between characters. /// - virtual void print(const Content& content, int x, int y, int lineheight, int spacing = 0) = 0; + virtual void render(const Content& content, int x, int y, int lineheight, int spacing = 0) = 0; /// /// Render text to given position. @@ -85,7 +85,7 @@ namespace JinEngine /// @param lineheight Line height of the text. /// @param spacing Spacing between characters. /// - virtual void print(const Text& text, int x, int y, int lineheight, int spacing = 0) = 0; + virtual void render(const Text& text, int x, int y, int lineheight, int spacing = 0) = 0; /// /// Get font size. -- cgit v1.1-26-g67d0