mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 06:25:46 +00:00
OpenGL: Fix TickWork
This commit is contained in:
parent
42ef10060a
commit
140926e2b5
1 changed files with 4 additions and 0 deletions
|
@ -215,6 +215,9 @@ void RasterizerOpenGL::Draw(bool is_indexed, bool is_instanced) {
|
|||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
gpu.TickWork();
|
||||
|
||||
std::scoped_lock lock{buffer_cache.mutex, texture_cache.mutex};
|
||||
pipeline->SetEngine(maxwell3d, gpu_memory);
|
||||
pipeline->Configure(is_indexed);
|
||||
|
@ -272,6 +275,7 @@ void RasterizerOpenGL::DispatchCompute() {
|
|||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
pipeline->SetEngine(kepler_compute, gpu_memory);
|
||||
pipeline->Configure();
|
||||
const auto& qmd{kepler_compute->launch_description};
|
||||
glDispatchCompute(qmd.grid_dim_x, qmd.grid_dim_y, qmd.grid_dim_z);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue