
Yep, that was the problem.
Once I converted my program to C, everything ran silky smooth. Although, there is one thing I can't get working...It compiles without any errors, but crashes on the psp:
Code: Select all
#include <psptypes.h>
#include <malloc.h>
#include <stdio.h>
#include <png.h>
typedef u32 Color;
typedef int bool;
#define true 1
#define false 0
typedef struct {
int width;
int height;
int realWidth;
int realHeight;
bool swizzled;
Color* data;
} Texture;
static int getNextPower2(int width) {
int b = width;
int n;
for (n = 0; b != 0; n++) b >>= 1;
b = 1 << n;
if (b == 2 * width) b >>= 1;
return b;
}
void user_warning_fn(png_structp png_ptr, png_const_charp warning_msg) {}
Texture* loadPNG(const char* filename) {
png_structp png_ptr;
png_infop info_ptr;
unsigned int x, y, sig_read = 0;
png_uint_32 width, height;
int bit_depth, color_type, interlace_type;
u32* line;
FILE *fp;
Texture* tmpTex = (Texture*) malloc(sizeof(Texture));
if (!tmpTex) return NULL;
tmpTex->swizzled = false;
if ((fp = fopen(filename, "rb")) == NULL) return NULL;
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (png_ptr == NULL) {
free(tmpTex);
fclose(fp);
return NULL;;
}
png_set_error_fn(png_ptr, (png_voidp) NULL, (png_error_ptr) NULL, user_warning_fn);
info_ptr = png_create_info_struct(png_ptr);
if (info_ptr == NULL) {
free(tmpTex);
fclose(fp);
png_destroy_read_struct(&png_ptr, png_infopp_NULL, png_infopp_NULL);
return NULL;
}
png_init_io(png_ptr, fp);
png_set_sig_bytes(png_ptr, sig_read);
png_read_info(png_ptr, info_ptr);
png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, int_p_NULL, int_p_NULL);
if (width > 512 || height > 512) {
free(tmpTex);
fclose(fp);
png_destroy_read_struct(&png_ptr, png_infopp_NULL, png_infopp_NULL);
return NULL;
}
tmpTex->realWidth = width;
tmpTex->realHeight = height;
tmpTex->width = getNextPower2(width);
tmpTex->height = getNextPower2(height);
png_set_strip_16(png_ptr);
png_set_packing(png_ptr);
if (color_type == PNG_COLOR_TYPE_PALETTE) png_set_palette_to_rgb(png_ptr);
if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) png_set_gray_1_2_4_to_8(png_ptr);
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) png_set_tRNS_to_alpha(png_ptr);
png_set_filler(png_ptr, 0xff, PNG_FILLER_AFTER);
tmpTex->data = (Color*) memalign(16, tmpTex->width * tmpTex->height * sizeof(Color));
if (!tmpTex->data) {
free(tmpTex);
fclose(fp);
png_destroy_read_struct(&png_ptr, png_infopp_NULL, png_infopp_NULL);
return NULL;
}
line = (u32*) malloc(width * 4);
if (!line) {
free(tmpTex->data);
free(tmpTex);
fclose(fp);
png_destroy_read_struct(&png_ptr, png_infopp_NULL, png_infopp_NULL);
return NULL;
}
for (y = 0; y < height; y++) {
png_read_row(png_ptr, (u8*) line, png_bytep_NULL);
for (x = 0; x < width; x++) {
u32 color = line[x];
tmpTex->data[x + y * tmpTex->width] = color;
}
}
free(line);
png_read_end(png_ptr, info_ptr);
png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL);
fclose(fp);
return tmpTex;
}
It worked when I was building ELF EBOOTs in C++, but now just adding the loadPng() function to my code causes it to crash. If you could point out any errors I've made it really get me out of a bind
PS:
Has anyone got a working version of the PRX Loader example?