Merge pull request #176 from CatalystG/master

(BlackBerry) Build fix
This commit is contained in:
Squarepusher 2013-04-08 19:06:36 -07:00
commit b176eb7cd4
2 changed files with 2 additions and 12 deletions

View File

@ -21,6 +21,8 @@
#include <bps/bps.h>
#include "menu/rgui.h"
int rarch_main(int argc, char *argv[])
{
//Initialize bps

View File

@ -377,16 +377,6 @@ static bool gfx_ctx_has_focus(void)
return true;
}
static bool gfx_ctx_init_egl_image_buffer(const video_info_t *video)
{
return false;
}
static bool gfx_ctx_write_egl_image(const void *frame, unsigned width, unsigned height, unsigned pitch, bool rgb32, unsigned index, void **image_handle)
{
return false;
}
const gfx_ctx_driver_t gfx_ctx_bbqnx = {
gfx_ctx_init,
gfx_ctx_destroy,
@ -402,8 +392,6 @@ const gfx_ctx_driver_t gfx_ctx_bbqnx = {
gfx_ctx_swap_buffers,
gfx_ctx_input_driver,
NULL,
gfx_ctx_init_egl_image_buffer,
gfx_ctx_write_egl_image,
NULL,
"blackberry_qnx",
};