mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
28931216b0
By default mesa3d run Opengl 3.0 context and GLSL 1.30 so we needed force Opengl 3.3 context and run Ok HW tesselation this script is workaround for that function work in mesa3d
6 lines
189 B
Bash
6 lines
189 B
Bash
#!/bin/sh
|
|
echo "We need force Opengl 3.3 Compatibility context for run HW tesselation in mesa3d open source"
|
|
MESA_GL_VERSION_OVERRIDE=3.3COMPAT
|
|
export MESA_GL_VERSION_OVERRIDE
|
|
./PPSSPPSDL
|