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

CI: split jobs into more steps; compiler: fix "v test v" with tcc

This commit is contained in:
Delyan Angelov
2019-09-22 17:24:15 +03:00
committed by Alexander Medvednikov
parent 049e228003
commit 7421781150
3 changed files with 37 additions and 15 deletions

View File

@@ -48,7 +48,7 @@ struct Character {
[typedef]
struct C.FT_Library {
_z int
}
struct Context {
@@ -156,7 +156,7 @@ pub fn new_context(cfg gg.Cfg) &Context {
projection := glm.ortho(0, width, 0, height)// 0 at BOT
shader.set_mat4('projection', projection)
// FREETYPE
ft := FT_Library{}
ft := FT_Library{0}
// All functions return a value different than 0 whenever
// an error occurred
mut ret := C.FT_Init_FreeType(&ft)