Minor fixes

This commit is contained in:
Luke Benstead 2021-04-03 21:15:03 +01:00
parent 8ee28fdaac
commit 03694d85bf
2 changed files with 11 additions and 11 deletions

View File

@ -17,7 +17,7 @@
__BEGIN_DECLS
#ifndef BUILD_LIBGL
#include <GL/gl.h>
#include <gl.h>
#endif
#define GLU_FALSE 0

View File

@ -9,10 +9,10 @@
#include <kos.h>
#include "gl.h"
#include "glu.h"
#include "glkos.h"
#include "glext.h"
#include "../include/gl.h"
#include "../include/glu.h"
#include "../include/glkos.h"
#include "../include/glext.h"
#define PVR_HDR_SIZE 0x20
#define MAX(x, y) ((x > y) ? x : y)
@ -92,12 +92,12 @@ GLuint glTextureLoadPVR(char *fname, unsigned char isMipMapped, unsigned char gl
if(texFormat != GL_UNSIGNED_SHORT_5_6_5)
glCompressedTexImage2DARB(GL_TEXTURE_2D,
0,
texFormat,
texW,
texH,
0,
texSize,
TEX0);
texFormat,
texW,
texH,
0,
texSize,
TEX0);
else {
fprintf(stderr, "%x\n", texFormat);
glTexImage2D(GL_TEXTURE_2D,