mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-03-07 16:05:26 +00:00
win32 fixes
git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@1326 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
@ -59,7 +59,7 @@ void TextureManager::Preload()
|
||||
ilLoadL(IL_TYPE_UNKNOWN,(ILvoid*) M_data, M_bytes);
|
||||
GLuint tex = ilutGLBindTexImage();
|
||||
#else
|
||||
uint tex = SOIL_load_OGL_texture_from_memory(
|
||||
unsigned int tex = SOIL_load_OGL_texture_from_memory(
|
||||
M_data,
|
||||
M_bytes,
|
||||
SOIL_LOAD_AUTO,
|
||||
@ -173,7 +173,7 @@ GLuint TextureManager::getTextureFullpath(const std::string filename, const std:
|
||||
#else
|
||||
int width, height;
|
||||
|
||||
uint tex = SOIL_load_OGL_texture_size(
|
||||
unsigned int tex = SOIL_load_OGL_texture_size(
|
||||
imageURL.c_str(),
|
||||
SOIL_LOAD_AUTO,
|
||||
SOIL_CREATE_NEW_ID,
|
||||
|
||||
@ -19,7 +19,7 @@ extern "C"
|
||||
|
||||
typedef struct DIR DIR;
|
||||
|
||||
static int errno;
|
||||
//static int errno;
|
||||
|
||||
struct dirent
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user