Merge pull request #918 from crazyBaboon/master
comment icon_load() as it is not being used currently
This commit is contained in:
commit
adc52d710f
@ -77,25 +77,28 @@ die(const char *fmt, ...)
|
|||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct nk_image
|
/* function icon_load () is not used to build this file but might still be useful :) */
|
||||||
icon_load(const char *filename)
|
/*
|
||||||
{
|
static struct nk_image
|
||||||
int x,y,n;
|
icon_load(const char *filename)
|
||||||
GLuint tex;
|
{
|
||||||
unsigned char *data = stbi_load(filename, &x, &y, &n, 0);
|
int x,y,n;
|
||||||
if (!data) die("[SDL]: failed to load image: %s", filename);
|
GLuint tex;
|
||||||
|
unsigned char *data = stbi_load(filename, &x, &y, &n, 0);
|
||||||
|
if (!data) die("[SDL]: failed to load image: %s", filename);
|
||||||
|
|
||||||
glGenTextures(1, &tex);
|
glGenTextures(1, &tex);
|
||||||
glBindTexture(GL_TEXTURE_2D, tex);
|
glBindTexture(GL_TEXTURE_2D, tex);
|
||||||
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_NEAREST);
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_NEAREST);
|
||||||
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR_MIPMAP_NEAREST);
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR_MIPMAP_NEAREST);
|
||||||
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
||||||
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
||||||
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, x, y, 0, GL_RGBA, GL_UNSIGNED_BYTE, data);
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, x, y, 0, GL_RGBA, GL_UNSIGNED_BYTE, data);
|
||||||
glGenerateMipmap(GL_TEXTURE_2D);
|
glGenerateMipmap(GL_TEXTURE_2D);
|
||||||
stbi_image_free(data);
|
stbi_image_free(data);
|
||||||
return nk_image_id((int)tex);
|
return nk_image_id((int)tex);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
static void
|
static void
|
||||||
device_init(struct device *dev)
|
device_init(struct device *dev)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user