mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-24 11:41:04 +00:00
fixup! vertex_shader: Optimized SIMD-based vertex shader interpreter for x86 systems.
This commit is contained in:
parent
6b98489dfb
commit
ca5ec39294
@ -2,7 +2,7 @@
|
|||||||
// Licensed under GPLv2 or any later version
|
// Licensed under GPLv2 or any later version
|
||||||
// Refer to the license.txt file included.
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
#include <string>
|
#include <cstring>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include <nihstro/shader_bytecode.h>
|
#include <nihstro/shader_bytecode.h>
|
||||||
@ -193,7 +193,7 @@ static inline bool EvaluateCondition(const CoreState& state, bool refx, bool ref
|
|||||||
};
|
};
|
||||||
|
|
||||||
void InitCore(CoreState& state) {
|
void InitCore(CoreState& state) {
|
||||||
memcpy(&state.uniform[0].x, g_state.vs.uniforms.f, sizeof(state.uniform));
|
std::memcpy(&state.uniform[0].x, g_state.vs.uniforms.f, sizeof(state.uniform));
|
||||||
}
|
}
|
||||||
|
|
||||||
VertexShader::OutputVertex RunShader(CoreState& state, const VertexShader::InputVertex& input, int num_attributes) {
|
VertexShader::OutputVertex RunShader(CoreState& state, const VertexShader::InputVertex& input, int num_attributes) {
|
||||||
|
Loading…
Reference in New Issue
Block a user