misc(texture): remove useless printf

This commit is contained in:
Swung0x48 2025-01-30 19:01:56 +08:00
parent 5dfbed53e3
commit 4847332088

View File

@ -42,11 +42,9 @@ bool check_rgba16() {
for (int i = 0; i < numFormats; ++i) {
const GLubyte* extension = gles_glGetStringi(GL_EXTENSIONS, i);
if (strcmp((const char*)extension, "GL_EXT_texture_norm16") == 0) {
printf("supports GL_EXT_texture_norm16\n");
return true;
}
}
printf("does not support GL_EXT_texture_norm16\n");
return false;
}