Mercurial > hg > Game > Cerium
view Renderer/Engine/texture.h @ 882:1cb89ec2e796 draft
SceneGraphRoot::set_move_task add.
author | tkaito |
---|---|
date | Mon, 12 Jul 2010 04:02:14 +0900 |
parents | 63a08f3a468a |
children | fada580e4604 |
line wrap: on
line source
#ifndef INCLUDED_TEXTURE #define INCLUDED_TEXTURE #if 0 // もういらないっぽい OpenGL 使用時の遺産 #include <SDL.h> #include <SDL_opengl.h> GLuint SDL_GL_LoadTexture(SDL_Surface *surface, GLfloat *texcoord) #endif typedef struct texture_list { int t_w; int t_h; uint32 *pixels_orig; uint32 *pixels; int scale_max; int pad[3]; // 12 } texture_list, *texture_list_ptr ; // 20 + pad(12) = 32 #endif