1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-03 01:21:10 +00:00

Merge pull request from orbea/menu

A few --disable-menu fixes.
This commit is contained in:
Twinaphex 2019-05-05 01:19:30 +02:00 committed by GitHub
commit 108a54a7f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 3 deletions

@ -27,6 +27,8 @@ matrix:
env: C89_BUILD=1 CC=gcc-8 CXX=g++-8 env: C89_BUILD=1 CC=gcc-8 CXX=g++-8
- compiler: gcc - compiler: gcc
env: CXX_BUILD=1 CC=gcc-8 CXX=g++-8 env: CXX_BUILD=1 CC=gcc-8 CXX=g++-8
- compiler: gcc
env: DISABLE_MENU=1 CC=gcc-8 CXX=g++-8
- compiler: clang - compiler: clang
env: CC=clang-6.0 CXX=clang++-6.0 env: CC=clang-6.0 CXX=clang++-6.0
- compiler: clang - compiler: clang
@ -69,10 +71,13 @@ before_install:
script: script:
- | - |
if [ -n "$CROSS_COMPILE" ]; then if [ -n "$CROSS_COMPILE" ]; then
./configure --disable-d3d8 --disable-d3d9 --disable-d3d10 --disable-d3d11 --disable-d3d12 --enable-builtinzlib ARGS="$ARGS --disable-d3d8 --disable-d3d9 --disable-d3d10 --disable-d3d11 --disable-d3d12 --enable-builtinzlib"
else
./configure
fi fi
- |
if [ -n "$DISABLE_MENU" ]; then
ARGS="$ARGS --disable-menu"
fi
- ./configure $ARGS
- | - |
if [ -n "$C89_BUILD" ]; then if [ -n "$C89_BUILD" ]; then
make C89_BUILD=1 make C89_BUILD=1
@ -84,6 +89,7 @@ script:
env: env:
global: global:
- ARGS=""
- MAKEFLAGS="-j2" - MAKEFLAGS="-j2"
- secure: "qc91ReC3OlzSh2gFaSH6TYzC2qIQvgA2AZff6J13eaH8xijAhuMzttZ0rMQJ0DWCIhPeUb0kIzVyaGoe4MwPALzpw1C1AznIWiZJ53HN+hWCOcS/af7YVPk6HPySnwqrS+Wv3AIIvIKFV2mxv21F/JbT/N+pArlRrp904Xj+KPo=" - secure: "qc91ReC3OlzSh2gFaSH6TYzC2qIQvgA2AZff6J13eaH8xijAhuMzttZ0rMQJ0DWCIhPeUb0kIzVyaGoe4MwPALzpw1C1AznIWiZJ53HN+hWCOcS/af7YVPk6HPySnwqrS+Wv3AIIvIKFV2mxv21F/JbT/N+pArlRrp904Xj+KPo="
addons: addons:

@ -1526,6 +1526,7 @@ static void gl_core_update_cpu_texture(gl_core_t *gl,
} }
} }
#if defined(HAVE_MENU)
static void gl_core_draw_menu_texture(gl_core_t *gl, video_frame_info_t *video_info) static void gl_core_draw_menu_texture(gl_core_t *gl, video_frame_info_t *video_info)
{ {
const float vbo_data[] = { const float vbo_data[] = {
@ -1566,6 +1567,7 @@ static void gl_core_draw_menu_texture(gl_core_t *gl, video_frame_info_t *video_i
glDisable(GL_BLEND); glDisable(GL_BLEND);
} }
#endif
static bool gl_core_frame(void *data, const void *frame, static bool gl_core_frame(void *data, const void *frame,
unsigned frame_width, unsigned frame_height, unsigned frame_width, unsigned frame_height,

@ -524,5 +524,6 @@ if [ "$HAVE_DEBUG" = 'yes' ]; then
fi fi
fi fi
check_enabled MENU MENU_WIDGETS 'menu widgets' 'The menu is' false
check_enabled ZLIB RPNG RPNG 'zlib is' false check_enabled ZLIB RPNG RPNG 'zlib is' false
check_enabled V4L2 VIDEOPROCESSOR 'video processor' 'Video4linux2 is' true check_enabled V4L2 VIDEOPROCESSOR 'video processor' 'Video4linux2 is' true