mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 15:31:26 +12:00
gl: Use compute shaders for typeless texture decode
This commit is contained in:
parent
7a6e2e716f
commit
105d4b51e6
7 changed files with 218 additions and 186 deletions
|
@ -30,6 +30,16 @@ namespace gl
|
|||
}
|
||||
}
|
||||
|
||||
void destroy_compute_tasks()
|
||||
{
|
||||
for (auto& [key, prog] : g_compute_tasks)
|
||||
{
|
||||
prog->destroy();
|
||||
}
|
||||
|
||||
g_compute_tasks.clear();
|
||||
}
|
||||
|
||||
#ifdef WIN32
|
||||
void APIENTRY dbgFunc(GLenum source, GLenum type, GLuint id,
|
||||
GLenum severity, GLsizei lenght, const GLchar* message,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue