aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/textures/workers.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-05-20 17:15:36 -0400
committerLiam <byteslice@airmail.cc>2023-05-23 12:54:40 -0400
commit415c78b87c008f0d963679ea9bc06c8aa566b506 (patch)
tree11e6a5d2211a99660a48678059c703e849c06da3 /src/video_core/textures/workers.h
parentf82efe9f65c5fc7aa2bba88ae38e211b98590efd (diff)
textures: add BC1 and BC3 compressors and recompression setting
Diffstat (limited to 'src/video_core/textures/workers.h')
-rw-r--r--src/video_core/textures/workers.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/video_core/textures/workers.h b/src/video_core/textures/workers.h
new file mode 100644
index 000000000..008dd05b3
--- /dev/null
+++ b/src/video_core/textures/workers.h
@@ -0,0 +1,12 @@
+// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "common/thread_worker.h"
+
+namespace Tegra::Texture {
+
+Common::ThreadWorker& GetThreadWorkers();
+
+}