diff options
| author | 2018-10-06 12:06:40 -0400 | |
|---|---|---|
| committer | 2018-10-06 12:06:40 -0400 | |
| commit | 2fbb20b2b5bd543770dfd5e48ebf66df16d35996 (patch) | |
| tree | f45e3f6ce6bf70d4f348d8dcd41bbaf4f09645d0 /src/yuzu_cmd | |
| parent | fermi_2d: Implement simple copies with AccelerateSurfaceCopy. (diff) | |
| download | yuzu-2fbb20b2b5bd543770dfd5e48ebf66df16d35996.tar.gz yuzu-2fbb20b2b5bd543770dfd5e48ebf66df16d35996.tar.xz yuzu-2fbb20b2b5bd543770dfd5e48ebf66df16d35996.zip | |
yuzu/yuzu_cmd: Add checks for required extension ARB_copy_image.
Diffstat (limited to 'src/yuzu_cmd')
| -rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp index 0733301b2..155095095 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | |||
| @@ -98,6 +98,8 @@ bool EmuWindow_SDL2::SupportsRequiredGLExtensions() { | |||
| 98 | unsupported_ext.push_back("ARB_texture_storage"); | 98 | unsupported_ext.push_back("ARB_texture_storage"); |
| 99 | if (!GLAD_GL_ARB_multi_bind) | 99 | if (!GLAD_GL_ARB_multi_bind) |
| 100 | unsupported_ext.push_back("ARB_multi_bind"); | 100 | unsupported_ext.push_back("ARB_multi_bind"); |
| 101 | if (!GLAD_GL_ARB_copy_image) | ||
| 102 | unsupported_ext.push_back("ARB_copy_image"); | ||
| 101 | 103 | ||
| 102 | // Extensions required to support some texture formats. | 104 | // Extensions required to support some texture formats. |
| 103 | if (!GLAD_GL_EXT_texture_compression_s3tc) | 105 | if (!GLAD_GL_EXT_texture_compression_s3tc) |