mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Minor build fixes.
This commit is contained in:
parent
4bb17fd6e9
commit
1ba8c626ed
@ -1947,7 +1947,7 @@ bool gl_core_filter_chain::init_history()
|
||||
original_history.emplace_back(new gl_core::Framebuffer(0, 1));
|
||||
}
|
||||
|
||||
RARCH_LOG("[GLCore]: Using history of %u frames.\n", required_images);
|
||||
RARCH_LOG("[GLCore]: Using history of %u frames.\n", unsigned(required_images));
|
||||
|
||||
/* On first frame, we need to clear the textures to
|
||||
* a known state, but we need
|
||||
|
@ -761,7 +761,7 @@ bool vulkan_filter_chain::init_history()
|
||||
max_input_size, original_format, 1));
|
||||
}
|
||||
|
||||
RARCH_LOG("[Vulkan filter chain]: Using history of %u frames.\n", required_images);
|
||||
RARCH_LOG("[Vulkan filter chain]: Using history of %u frames.\n", unsigned(required_images));
|
||||
|
||||
/* On first frame, we need to clear the textures to
|
||||
* a known state, but we need
|
||||
|
@ -478,6 +478,7 @@ check_lib '' STRCASESTR "$CLIB" strcasestr
|
||||
check_lib '' MMAP "$CLIB" mmap
|
||||
|
||||
check_enabled CXX VULKAN vulkan 'The C++ compiler is' false
|
||||
check_enabled CXX OPENGL_CORE 'OpenGL core' 'The C++ compiler is' false
|
||||
check_enabled THREADS VULKAN vulkan 'Threads are' false
|
||||
|
||||
if [ "$HAVE_VULKAN" != "no" ] && [ "$OS" = 'Win32' ]; then
|
||||
|
@ -58,6 +58,7 @@ C89_D3D12=no
|
||||
HAVE_D3DX=yes # Direct3DX support
|
||||
HAVE_OPENGL=auto # OpenGL 2.0 support
|
||||
HAVE_OPENGL_CORE=yes # Modern OpenGL driver support (GLES3+/GL3.2 core+), requires OpenGL.
|
||||
C89_OPENGL_CORE=no
|
||||
HAVE_OPENGL1=no # OpenGL 1.1 support
|
||||
HAVE_MALI_FBDEV=no # Mali fbdev context support
|
||||
HAVE_VIVANTE_FBDEV=no # Vivante fbdev context support
|
||||
|
Loading…
x
Reference in New Issue
Block a user