Skip to content
Snippets Groups Projects
Commit c4f10cae authored by dg's avatar dg
Browse files

pop

git-svn-id: http://svn.net-core.org/repos/t-engine4@3732 51575b47-30f0-44d4-a5cc-537603b46e54
parent addb4ea1
No related branches found
No related tags found
No related merge requests found
......@@ -548,6 +548,8 @@ static int sdl_font_draw(lua_State *L)
int h = TTF_FontLineSkip(*f);
SDL_Color color = {r,g,b};
if (max_width >= 1024) max_width = 1024;
Uint32 rmask, gmask, bmask, amask;
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
rmask = 0xff000000; gmask = 0x00ff0000; bmask = 0x0000ff00; amask = 0x000000ff;
......
......@@ -654,6 +654,11 @@ int resizeWindow(int width, int height)
SDL_SetGamma(gamma_correction, gamma_correction, gamma_correction);
GLint texSize;
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &texSize);
printf("OpenGL max texture size: %d\n", texSize);
return( TRUE );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment