summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2019-01-20 05:03:26 +0100
committerJames Rowe <jroweboy@gmail.com>2019-01-20 22:47:35 +0100
commite8bd6b1fcc5abd4813cda08b4921c94ada89509d (patch)
tree1db492eb96d27f4e2ded0aee295d3be579352535 /src/video_core/rasterizer_interface.h
parentMerge pull request #2034 from jroweboy/loading-widget (diff)
downloadyuzu-e8bd6b1fcc5abd4813cda08b4921c94ada89509d.tar
yuzu-e8bd6b1fcc5abd4813cda08b4921c94ada89509d.tar.gz
yuzu-e8bd6b1fcc5abd4813cda08b4921c94ada89509d.tar.bz2
yuzu-e8bd6b1fcc5abd4813cda08b4921c94ada89509d.tar.lz
yuzu-e8bd6b1fcc5abd4813cda08b4921c94ada89509d.tar.xz
yuzu-e8bd6b1fcc5abd4813cda08b4921c94ada89509d.tar.zst
yuzu-e8bd6b1fcc5abd4813cda08b4921c94ada89509d.zip
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index 06fc59dbe..b2c74afde 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -4,6 +4,7 @@
#pragma once
+#include <functional>
#include "common/common_types.h"
#include "video_core/engines/fermi_2d.h"
#include "video_core/gpu.h"
@@ -11,6 +12,14 @@
namespace VideoCore {
+enum class LoadCallbackStage {
+ Prepare,
+ Raw,
+ Binary,
+ Complete,
+};
+using DiskResourceLoadCallback = std::function<void(LoadCallbackStage, std::size_t, std::size_t)>;
+
class RasterizerInterface {
public:
virtual ~RasterizerInterface() {}