mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 10:10:57 +00:00
Add RPNG, optional PNG loader.
This commit is contained in:
parent
5f0344f002
commit
f53d404024
10
Makefile
10
Makefile
@ -266,6 +266,15 @@ endif
|
||||
ifeq ($(HAVE_SDL_IMAGE), 1)
|
||||
LIBS += $(SDL_IMAGE_LIBS)
|
||||
DEFINES += $(SDL_IMAGE_CFLAGS)
|
||||
else
|
||||
ifeq ($(HAVE_ZLIB), 1)
|
||||
OBJ += gfx/rpng/rpng.o
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(HAVE_ZLIB), 1)
|
||||
LIBS += $(ZLIB_LIBS)
|
||||
DEFINES += $(ZLIB_CFLAGS)
|
||||
endif
|
||||
|
||||
ifeq ($(HAVE_LIBPNG), 1)
|
||||
@ -388,6 +397,7 @@ clean:
|
||||
rm -f audio/*.o
|
||||
rm -f conf/*.o
|
||||
rm -f gfx/*.o
|
||||
rm -f gfx/rpng/*.o
|
||||
rm -f gfx/fonts/*.o
|
||||
rm -f gfx/math/*.o
|
||||
rm -f gfx/context/*.o
|
||||
|
46
gfx/image.c
46
gfx/image.c
@ -24,6 +24,7 @@
|
||||
#include <string.h>
|
||||
#include <stddef.h>
|
||||
#include "../general.h"
|
||||
#include "rpng/rpng.h"
|
||||
|
||||
#ifdef HAVE_SDL_IMAGE
|
||||
|
||||
@ -101,16 +102,9 @@ bool texture_image_load_argb_shift(const char *path, struct texture_image *out_i
|
||||
|
||||
#else
|
||||
|
||||
bool texture_image_load_argb_shift(const char *path, struct texture_image *out_img,
|
||||
static bool texture_image_load_tga_shift(const char *path, struct texture_image *out_img,
|
||||
unsigned a_shift, unsigned r_shift, unsigned g_shift, unsigned b_shift)
|
||||
{
|
||||
// TODO: Check more gracefully.
|
||||
if (!strstr(path, ".tga"))
|
||||
{
|
||||
RARCH_ERR("Extension is not .tga.\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
void *raw_buf = NULL;
|
||||
ssize_t len = read_file(path, &raw_buf);
|
||||
if (len < 0)
|
||||
@ -189,6 +183,42 @@ bool texture_image_load_argb_shift(const char *path, struct texture_image *out_i
|
||||
return true;
|
||||
}
|
||||
|
||||
bool texture_image_load_argb_shift(const char *path, struct texture_image *out_img,
|
||||
unsigned a_shift, unsigned r_shift, unsigned g_shift, unsigned b_shift)
|
||||
{
|
||||
if (strstr(path, ".tga"))
|
||||
return texture_image_load_tga_shift(path, out_img, a_shift, r_shift, g_shift, b_shift);
|
||||
#ifdef HAVE_ZLIB
|
||||
else if (strstr(path, ".png"))
|
||||
{
|
||||
RARCH_LOG("[RPNG]: Using RPNG loader.\n");
|
||||
bool ret = rpng_load_image_argb(path, &out_img->pixels, &out_img->width, &out_img->height);
|
||||
if (!ret)
|
||||
return false;
|
||||
|
||||
// This is quite uncommon ...
|
||||
if (a_shift != 24 || r_shift != 16 || g_shift != 8 || b_shift != 0)
|
||||
{
|
||||
unsigned num_pixels = out_img->width * out_img->height;
|
||||
uint32_t *pixels = out_img->pixels;
|
||||
for (unsigned i = 0; i < num_pixels; i++)
|
||||
{
|
||||
uint32_t col = pixels[i];
|
||||
uint8_t a = (uint8_t)(col >> 24);
|
||||
uint8_t r = (uint8_t)(col >> 16);
|
||||
uint8_t g = (uint8_t)(col >> 8);
|
||||
uint8_t b = (uint8_t)(col >> 0);
|
||||
pixels[i] = (a << a_shift) | (r << r_shift) | (g << g_shift) | (b << b_shift);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
bool texture_image_load(const char *path, struct texture_image *out_img)
|
||||
|
20
gfx/rpng/Makefile
Normal file
20
gfx/rpng/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
TARGET := rpng
|
||||
|
||||
SOURCES := $(wildcard *.c)
|
||||
OBJS := $(SOURCES:.c=.o)
|
||||
|
||||
CFLAGS += -Wall -pedantic -std=gnu99 -O0 -g
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
%.o: %.c
|
||||
$(CC) -c -o $@ $< $(CFLAGS)
|
||||
|
||||
$(TARGET): $(OBJS)
|
||||
$(CC) -o $@ $^ $(LDFLAGS) -lz
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET) $(OBJS)
|
||||
|
||||
.PHONY: clean
|
||||
|
417
gfx/rpng/rpng.c
Normal file
417
gfx/rpng/rpng.c
Normal file
@ -0,0 +1,417 @@
|
||||
/* RetroArch - A frontend for libretro.
|
||||
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
||||
*
|
||||
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
||||
* of the GNU General Public License as published by the Free Software Found-
|
||||
* ation, either version 3 of the License, or (at your option) any later version.
|
||||
*
|
||||
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
* PURPOSE. See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with RetroArch.
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "rpng.h"
|
||||
#include <zlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
// Decodes a subset of PNG standard.
|
||||
// Does not handle much outside 24/32-bit RGB(A) images.
|
||||
|
||||
#define GOTO_END_ERROR() do { \
|
||||
fprintf(stderr, "[RPNG]: Error in line %d.\n", __LINE__); \
|
||||
ret = false; \
|
||||
goto end; \
|
||||
} while(0)
|
||||
|
||||
struct png_chunk
|
||||
{
|
||||
uint32_t size;
|
||||
char type[4];
|
||||
uint8_t *data;
|
||||
};
|
||||
|
||||
struct png_ihdr
|
||||
{
|
||||
uint32_t width;
|
||||
uint32_t height;
|
||||
uint8_t depth;
|
||||
uint8_t color_type;
|
||||
uint8_t compression;
|
||||
uint8_t filter;
|
||||
uint8_t interlace;
|
||||
};
|
||||
|
||||
enum png_chunk_type
|
||||
{
|
||||
PNG_CHUNK_NOOP = 0,
|
||||
PNG_CHUNK_ERROR,
|
||||
PNG_CHUNK_IHDR,
|
||||
PNG_CHUNK_IDAT,
|
||||
PNG_CHUNK_IEND
|
||||
};
|
||||
|
||||
static uint32_t dword_be(const uint8_t *buf)
|
||||
{
|
||||
return (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | (buf[3] << 0);
|
||||
}
|
||||
|
||||
static bool read_chunk_header(FILE *file, struct png_chunk *chunk)
|
||||
{
|
||||
uint8_t dword[4] = {0};
|
||||
if (fread(dword, 1, 4, file) != 4)
|
||||
return false;
|
||||
|
||||
chunk->size = dword_be(dword);
|
||||
|
||||
if (fread(chunk->type, 1, 4, file) != 4)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
struct
|
||||
{
|
||||
const char *id;
|
||||
enum png_chunk_type type;
|
||||
} static const chunk_map[] = {
|
||||
{ "IHDR", PNG_CHUNK_IHDR },
|
||||
{ "IDAT", PNG_CHUNK_IDAT },
|
||||
{ "IEND", PNG_CHUNK_IEND },
|
||||
};
|
||||
|
||||
struct idat_buffer
|
||||
{
|
||||
uint8_t *data;
|
||||
size_t size;
|
||||
};
|
||||
|
||||
static enum png_chunk_type png_chunk_type(const struct png_chunk *chunk)
|
||||
{
|
||||
for (unsigned i = 0; i < sizeof(chunk_map) / sizeof(chunk_map[0]); i++)
|
||||
{
|
||||
if (memcmp(chunk->type, chunk_map[i].id, 4) == 0)
|
||||
return chunk_map[i].type;
|
||||
}
|
||||
|
||||
return PNG_CHUNK_NOOP;
|
||||
}
|
||||
|
||||
static bool png_read_chunk(FILE *file, struct png_chunk *chunk)
|
||||
{
|
||||
free(chunk->data);
|
||||
chunk->data = (uint8_t*)calloc(1, chunk->size + sizeof(uint32_t)); // CRC32
|
||||
if (!chunk->data)
|
||||
return false;
|
||||
|
||||
if (fread(chunk->data, 1, chunk->size + sizeof(uint32_t), file) != (chunk->size + sizeof(uint32_t)))
|
||||
{
|
||||
free(chunk->data);
|
||||
return false;
|
||||
}
|
||||
|
||||
// Ignore CRC.
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static void png_free_chunk(struct png_chunk *chunk)
|
||||
{
|
||||
free(chunk->data);
|
||||
chunk->data = NULL;
|
||||
}
|
||||
|
||||
static bool png_parse_ihdr(FILE *file, struct png_chunk *chunk, struct png_ihdr *ihdr)
|
||||
{
|
||||
bool ret = true;
|
||||
if (!png_read_chunk(file, chunk))
|
||||
return false;
|
||||
|
||||
if (chunk->size != 13)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
ihdr->width = dword_be(chunk->data + 0);
|
||||
ihdr->height = dword_be(chunk->data + 4);
|
||||
ihdr->depth = chunk->data[8];
|
||||
ihdr->color_type = chunk->data[9];
|
||||
ihdr->compression = chunk->data[10];
|
||||
ihdr->filter = chunk->data[11];
|
||||
ihdr->interlace = chunk->data[12];
|
||||
|
||||
if (ihdr->width == 0 || ihdr->height == 0)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
if (ihdr->depth != 8) // Only 8bpc supported.
|
||||
GOTO_END_ERROR();
|
||||
|
||||
if (ihdr->color_type != 2 && ihdr->color_type != 6) // Only RGB/RGBA supported.
|
||||
GOTO_END_ERROR();
|
||||
|
||||
if (ihdr->compression != 0)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
if (ihdr->interlace != 0) // No Adam7 supported.
|
||||
GOTO_END_ERROR();
|
||||
|
||||
end:
|
||||
png_free_chunk(chunk);
|
||||
return ret;
|
||||
}
|
||||
|
||||
// Paeth prediction filter.
|
||||
static inline uint8_t paeth(uint8_t a, uint8_t b, uint8_t c)
|
||||
{
|
||||
int p = a + b - c;
|
||||
int pa = abs(p - a);
|
||||
int pb = abs(p - b);
|
||||
int pc = abs(p - c);
|
||||
|
||||
if (pa <= pb && pa <= pc)
|
||||
return a;
|
||||
else if (pb <= pc)
|
||||
return b;
|
||||
else
|
||||
return c;
|
||||
}
|
||||
|
||||
static inline void copy_line_rgb(uint32_t *data, const uint8_t *decoded, unsigned width)
|
||||
{
|
||||
for (unsigned i = 0; i < width; i++)
|
||||
{
|
||||
uint32_t r = *decoded++;
|
||||
uint32_t g = *decoded++;
|
||||
uint32_t b = *decoded++;
|
||||
data[i] = (0xffu << 24) | (r << 16) | (g << 8) | (b << 0);
|
||||
}
|
||||
}
|
||||
|
||||
static inline void copy_line_rgba(uint32_t *data, const uint8_t *decoded, unsigned width)
|
||||
{
|
||||
for (unsigned i = 0; i < width; i++)
|
||||
{
|
||||
uint32_t r = *decoded++;
|
||||
uint32_t g = *decoded++;
|
||||
uint32_t b = *decoded++;
|
||||
uint32_t a = *decoded++;
|
||||
data[i] = (a << 24) | (r << 16) | (g << 8) | (b << 0);
|
||||
}
|
||||
}
|
||||
|
||||
static bool png_reverse_filter(uint32_t *data, const struct png_ihdr *ihdr,
|
||||
const uint8_t *inflate_buf, size_t inflate_buf_size)
|
||||
{
|
||||
bool ret = true;
|
||||
unsigned bpp = ihdr->color_type == 2 ? 3 : 4;
|
||||
if (inflate_buf_size < (ihdr->width * bpp + 1) * ihdr->height)
|
||||
return false;
|
||||
|
||||
unsigned pitch = ihdr->width * bpp;
|
||||
uint8_t *prev_scanline = (uint8_t*)calloc(1, pitch);
|
||||
uint8_t *decoded_scanline = (uint8_t*)calloc(1, pitch);
|
||||
|
||||
if (!decoded_scanline || !decoded_scanline)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
for (unsigned h = 0; h < ihdr->height;
|
||||
h++, inflate_buf += pitch, data += ihdr->width)
|
||||
{
|
||||
unsigned filter = *inflate_buf++;
|
||||
switch (filter)
|
||||
{
|
||||
case 0: // None
|
||||
memcpy(decoded_scanline, inflate_buf, pitch);
|
||||
break;
|
||||
|
||||
case 1: // Sub
|
||||
for (unsigned i = 0; i < bpp; i++)
|
||||
decoded_scanline[i] = inflate_buf[i];
|
||||
for (unsigned i = bpp; i < pitch; i++)
|
||||
decoded_scanline[i] = decoded_scanline[i - bpp] + inflate_buf[i];
|
||||
break;
|
||||
|
||||
case 2: // Up
|
||||
for (unsigned i = 0; i < pitch; i++)
|
||||
decoded_scanline[i] = prev_scanline[i] + inflate_buf[i];
|
||||
break;
|
||||
|
||||
case 3: // Average
|
||||
for (unsigned i = 0; i < bpp; i++)
|
||||
{
|
||||
uint8_t avg = prev_scanline[i] >> 1;
|
||||
decoded_scanline[i] = avg + inflate_buf[i];
|
||||
}
|
||||
for (unsigned i = bpp; i < pitch; i++)
|
||||
{
|
||||
uint8_t avg = (decoded_scanline[i - bpp] + prev_scanline[i]) >> 1;
|
||||
decoded_scanline[i] = avg + inflate_buf[i];
|
||||
}
|
||||
break;
|
||||
|
||||
case 4: // Paeth
|
||||
for (unsigned i = 0; i < bpp; i++)
|
||||
decoded_scanline[i] = paeth(0, prev_scanline[i], 0) + inflate_buf[i];
|
||||
for (unsigned i = bpp; i < pitch; i++)
|
||||
decoded_scanline[i] = paeth(decoded_scanline[i - bpp], prev_scanline[i], prev_scanline[i - bpp]) + inflate_buf[i];
|
||||
break;
|
||||
|
||||
default:
|
||||
GOTO_END_ERROR();
|
||||
}
|
||||
|
||||
if (bpp == 3)
|
||||
copy_line_rgb(data, decoded_scanline, ihdr->width);
|
||||
else
|
||||
copy_line_rgba(data, decoded_scanline, ihdr->width);
|
||||
|
||||
memcpy(prev_scanline, decoded_scanline, pitch);
|
||||
}
|
||||
|
||||
end:
|
||||
free(decoded_scanline);
|
||||
free(prev_scanline);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static bool png_append_idat(FILE *file, const struct png_chunk *chunk, struct idat_buffer *buf)
|
||||
{
|
||||
uint8_t *new_buffer = (uint8_t*)realloc(buf->data, buf->size + chunk->size);
|
||||
if (!new_buffer)
|
||||
return false;
|
||||
|
||||
buf->data = new_buffer;
|
||||
if (fread(buf->data + buf->size, 1, chunk->size, file) != chunk->size)
|
||||
return false;
|
||||
if (fseek(file, sizeof(uint32_t), SEEK_CUR) < 0)
|
||||
return false;
|
||||
buf->size += chunk->size;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool rpng_load_image_argb(const char *path, uint32_t **data, unsigned *width, unsigned *height)
|
||||
{
|
||||
*data = NULL;
|
||||
*width = 0;
|
||||
*height = 0;
|
||||
|
||||
bool ret = true;
|
||||
FILE *file = fopen(path, "rb");
|
||||
if (!file)
|
||||
return NULL;
|
||||
|
||||
fseek(file, 0, SEEK_END);
|
||||
long file_len = ftell(file);
|
||||
rewind(file);
|
||||
|
||||
bool has_ihdr = false;
|
||||
bool has_idat = false;
|
||||
bool has_iend = false;
|
||||
uint8_t *inflate_buf = NULL;
|
||||
size_t inflate_buf_size = 0;
|
||||
z_stream stream = {0};
|
||||
|
||||
struct idat_buffer idat_buf = {0};
|
||||
struct png_ihdr ihdr = {0};
|
||||
|
||||
char header[8];
|
||||
if (fread(header, 1, sizeof(header), file) != sizeof(header))
|
||||
GOTO_END_ERROR();
|
||||
|
||||
static const uint8_t reference[8] = {
|
||||
0x89, 'P', 'N', 'G', 0x0d, 0x0a, 0x1a, 0x0a,
|
||||
};
|
||||
|
||||
if (memcmp(header, reference, sizeof(header)) != 0)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
for (long pos = ftell(file); pos < file_len && pos >= 0; pos = ftell(file))
|
||||
{
|
||||
struct png_chunk chunk = {0};
|
||||
if (!read_chunk_header(file, &chunk))
|
||||
GOTO_END_ERROR();
|
||||
|
||||
switch (png_chunk_type(&chunk))
|
||||
{
|
||||
case PNG_CHUNK_NOOP:
|
||||
default:
|
||||
if (fseek(file, chunk.size + sizeof(uint32_t), SEEK_CUR) < 0)
|
||||
GOTO_END_ERROR();
|
||||
break;
|
||||
|
||||
case PNG_CHUNK_ERROR:
|
||||
GOTO_END_ERROR();
|
||||
|
||||
case PNG_CHUNK_IHDR:
|
||||
if (has_ihdr || has_idat || has_iend)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
if (!png_parse_ihdr(file, &chunk, &ihdr))
|
||||
GOTO_END_ERROR();
|
||||
|
||||
has_ihdr = true;
|
||||
break;
|
||||
|
||||
case PNG_CHUNK_IDAT:
|
||||
if (!has_ihdr || has_iend)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
if (!png_append_idat(file, &chunk, &idat_buf))
|
||||
GOTO_END_ERROR();
|
||||
|
||||
has_idat = true;
|
||||
break;
|
||||
|
||||
case PNG_CHUNK_IEND:
|
||||
if (!has_ihdr || !has_idat)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
if (fseek(file, sizeof(uint32_t), SEEK_CUR) < 0)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
has_iend = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!has_ihdr || !has_idat || !has_iend)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
if (inflateInit(&stream) != Z_OK)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
inflate_buf_size = (ihdr.width + 1) * ihdr.height * sizeof(uint32_t);
|
||||
inflate_buf = (uint8_t*)malloc(inflate_buf_size);
|
||||
if (!inflate_buf)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
stream.next_in = idat_buf.data;
|
||||
stream.avail_in = idat_buf.size;
|
||||
stream.avail_out = inflate_buf_size;
|
||||
stream.next_out = inflate_buf;
|
||||
|
||||
if (inflate(&stream, Z_SYNC_FLUSH) != Z_STREAM_END)
|
||||
GOTO_END_ERROR();
|
||||
inflateEnd(&stream);
|
||||
|
||||
*width = ihdr.width;
|
||||
*height = ihdr.height;
|
||||
*data = (uint32_t*)malloc(ihdr.width * ihdr.height * sizeof(uint32_t));
|
||||
if (!*data)
|
||||
GOTO_END_ERROR();
|
||||
|
||||
if (!png_reverse_filter(*data, &ihdr, inflate_buf, stream.total_out))
|
||||
GOTO_END_ERROR();
|
||||
|
||||
end:
|
||||
if (file)
|
||||
fclose(file);
|
||||
if (!ret)
|
||||
free(*data);
|
||||
free(idat_buf.data);
|
||||
free(inflate_buf);
|
||||
return ret;
|
||||
}
|
||||
|
25
gfx/rpng/rpng.h
Normal file
25
gfx/rpng/rpng.h
Normal file
@ -0,0 +1,25 @@
|
||||
/* RetroArch - A frontend for libretro.
|
||||
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
||||
*
|
||||
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
||||
* of the GNU General Public License as published by the Free Software Found-
|
||||
* ation, either version 3 of the License, or (at your option) any later version.
|
||||
*
|
||||
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
* PURPOSE. See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with RetroArch.
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef RPNG_H__
|
||||
#define RPNG_H__
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
bool rpng_load_image_argb(const char *path, uint32_t **data, unsigned *width, unsigned *height);
|
||||
|
||||
#endif
|
||||
|
46
gfx/rpng/rpng_test.c
Normal file
46
gfx/rpng/rpng_test.c
Normal file
@ -0,0 +1,46 @@
|
||||
/* RetroArch - A frontend for libretro.
|
||||
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
||||
*
|
||||
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
||||
* of the GNU General Public License as published by the Free Software Found-
|
||||
* ation, either version 3 of the License, or (at your option) any later version.
|
||||
*
|
||||
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
* PURPOSE. See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with RetroArch.
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "rpng.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
if (argc != 2)
|
||||
{
|
||||
fprintf(stderr, "Usage: %s <png file>\n", argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
uint32_t *data = NULL;
|
||||
unsigned width = 0;
|
||||
unsigned height = 0;
|
||||
|
||||
if (!rpng_load_image_argb(argv[1], &data, &width, &height))
|
||||
return 1;
|
||||
|
||||
fprintf(stderr, "Got image: %u x %u.\n", width, height);
|
||||
|
||||
for (unsigned h = 0; h < height; h++)
|
||||
{
|
||||
for (unsigned w = 0; w < width; w++)
|
||||
fprintf(stderr, "[%08x] ", data[h * width + w]);
|
||||
fprintf(stderr, "\n");
|
||||
}
|
||||
|
||||
free(data);
|
||||
}
|
||||
|
4
hash.h
4
hash.h
@ -19,6 +19,10 @@
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
// Hashes sha256 and outputs a human readable string for comparing with the cheat XML values.
|
||||
void sha256_hash(char *out, const uint8_t *in, size_t size);
|
||||
|
||||
|
@ -133,6 +133,7 @@ fi
|
||||
check_pkgconf SDL_IMAGE SDL_image
|
||||
|
||||
check_pkgconf LIBPNG libpng 1.5
|
||||
check_pkgconf ZLIB zlib
|
||||
|
||||
if [ "$HAVE_THREADS" != 'no' ]; then
|
||||
if [ "$HAVE_FFMPEG" != 'no' ]; then
|
||||
@ -205,6 +206,6 @@ check_macro NEON __ARM_NEON__
|
||||
add_define_make OS "$OS"
|
||||
|
||||
# Creates config.mk and config.h.
|
||||
VARS="ALSA OSS OSS_BSD OSS_LIB AL RSOUND ROAR JACK COREAUDIO PULSE SDL OPENGL GLES VG EGL KMS GBM DRM DYLIB GETOPT_LONG THREADS CG LIBXML2 SDL_IMAGE LIBPNG DYNAMIC FFMPEG AVCODEC AVFORMAT AVUTIL SWSCALE FREETYPE XVIDEO X11 XEXT XF86VM XINERAMA NETPLAY NETWORK_CMD STDIN_CMD COMMAND SOCKET_LEGACY FBO STRL PYTHON FFMPEG_ALLOC_CONTEXT3 FFMPEG_AVCODEC_OPEN2 FFMPEG_AVIO_OPEN FFMPEG_AVFORMAT_WRITE_HEADER FFMPEG_AVFORMAT_NEW_STREAM FFMPEG_AVCODEC_ENCODE_AUDIO2 FFMPEG_AVCODEC_ENCODE_VIDEO2 SINC BSV_MOVIE VIDEOCORE NEON"
|
||||
VARS="ALSA OSS OSS_BSD OSS_LIB AL RSOUND ROAR JACK COREAUDIO PULSE SDL OPENGL GLES VG EGL KMS GBM DRM DYLIB GETOPT_LONG THREADS CG LIBXML2 SDL_IMAGE LIBPNG ZLIB DYNAMIC FFMPEG AVCODEC AVFORMAT AVUTIL SWSCALE FREETYPE XVIDEO X11 XEXT XF86VM XINERAMA NETPLAY NETWORK_CMD STDIN_CMD COMMAND SOCKET_LEGACY FBO STRL PYTHON FFMPEG_ALLOC_CONTEXT3 FFMPEG_AVCODEC_OPEN2 FFMPEG_AVIO_OPEN FFMPEG_AVFORMAT_WRITE_HEADER FFMPEG_AVFORMAT_NEW_STREAM FFMPEG_AVCODEC_ENCODE_AUDIO2 FFMPEG_AVCODEC_ENCODE_VIDEO2 SINC BSV_MOVIE VIDEOCORE NEON"
|
||||
create_config_make config.mk $VARS
|
||||
create_config_header config.h $VARS
|
||||
|
@ -15,6 +15,7 @@ HAVE_EGL=auto # Enable EGL context support
|
||||
HAVE_VG=auto # Enable OpenVG support
|
||||
HAVE_CG=auto # Enable Cg shader support
|
||||
HAVE_LIBXML2=auto # Enable libxml2 support
|
||||
HAVE_ZLIB=auto # Enable zlib support (PNG decoding)
|
||||
HAVE_FBO=auto # Enable render-to-texture (FBO) support
|
||||
HAVE_ALSA=auto # Enable ALSA support
|
||||
HAVE_OSS=auto # Enable OSS support
|
||||
|
Loading…
Reference in New Issue
Block a user