fix test_sdl_alloctext
This commit is contained in:
Родитель
c8424ffa15
Коммит
56cd48e0e1
|
@ -549,6 +549,9 @@ var LibrarySDL = {
|
|||
var h = fontData.size;
|
||||
var fontString = h + 'px ' + fontData.name;
|
||||
var tempCtx = SDL.ttfContext;
|
||||
#if ASSERTIONS
|
||||
assert(tempCtx, 'TTF_Init must have been called');
|
||||
#endif
|
||||
tempCtx.save();
|
||||
tempCtx.font = fontString;
|
||||
var ret = tempCtx.measureText(text).width | 0;
|
||||
|
|
|
@ -9,6 +9,7 @@ int main()
|
|||
SDL_Init(SDL_INIT_VIDEO);
|
||||
SDL_Surface *screen = SDL_SetVideoMode(600, 450, 32, SDL_HWSURFACE);
|
||||
|
||||
TTF_Init();
|
||||
TTF_Font *font = TTF_OpenFont("myfont.ttf", 40);
|
||||
|
||||
int i = 0;
|
||||
|
|
Загрузка…
Ссылка в новой задаче