1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

stbi: remove opengl call

This commit is contained in:
Alexander Medvednikov
2020-07-05 19:28:28 +02:00
parent 1416c70e73
commit f6ab63f3a0
2 changed files with 16 additions and 2 deletions

View File

@@ -86,3 +86,17 @@ pub fn (mut gg FT) init_font() {
pub fn (ft &FT) flush(){
sfons.flush(ft.fons)
}
pub fn (ft &FT) text_width(s string) int {
return 0
}
pub fn (ft &FT) text_height(s string) int {
return 0
}
pub fn (ft &FT) text_size(s string) (int, int) {
return 0,0
}