mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 03:47:58 -05:00
Shader: Initial implementation of x86_x64 JIT compiler for Pica vertex shaders.
- Config: Add an option for selecting to use shader JIT or interpreter. - Qt: Add a menu option for enabling/disabling the shader JIT.
This commit is contained in:
@ -6,6 +6,7 @@
|
||||
#include <unordered_map>
|
||||
|
||||
#include "pica.h"
|
||||
#include "shader/shader.h"
|
||||
|
||||
namespace Pica {
|
||||
|
||||
@ -84,6 +85,8 @@ void Init() {
|
||||
}
|
||||
|
||||
void Shutdown() {
|
||||
Shader::Shutdown();
|
||||
|
||||
memset(&g_state, 0, sizeof(State));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user