mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
gg: remove draw_text()
This commit is contained in:
parent
5ea1c538b6
commit
865eee2f6b
@ -27,8 +27,8 @@ import const (
|
|||||||
|
|
||||||
pub fn vec2(x, y int) Vec2 {
|
pub fn vec2(x, y int) Vec2 {
|
||||||
res := Vec2 {
|
res := Vec2 {
|
||||||
x: x,
|
x: x
|
||||||
y: y,
|
y: y
|
||||||
}
|
}
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
@ -311,10 +311,6 @@ fn (c GG) fill_color(color gx.Color) {
|
|||||||
fn (c GG) fill() {
|
fn (c GG) fill() {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (ctx &GG) draw_text(_x, _y int, text string, cfg gx.TextCfg) {
|
|
||||||
//pub fn (c &GG) draw_text(x, y int) {
|
|
||||||
}
|
|
||||||
|
|
||||||
fn (c GG) move_to(x, y int) {
|
fn (c GG) move_to(x, y int) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user