summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/render/bgfx/pass.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/render/bgfx/pass.h')
-rw-r--r--src/osd/modules/render/bgfx/pass.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/osd/modules/render/bgfx/pass.h b/src/osd/modules/render/bgfx/pass.h
deleted file mode 100644
index 30c0b88a991..00000000000
--- a/src/osd/modules/render/bgfx/pass.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-
-#ifndef __DRAWBGFX_PASS__
-#define __DRAWBGFX_PASS__
-
-#include <string>
-#include <vector>
-
-class render_primitive;
-class bgfx_effect;
-class bgfx_texture;
-class bgfx_target;
-
-class bgfx_pass
-{
-public:
- bgfx_pass(std::string name, bgfx_effect* effect, std::vector<bgfx_texture*>& inputs, bgfx_target* output);
- ~bgfx_pass();
-
- void submit(render_primitive* prim, int view);
-
- // Getters
- std::string name() const { return m_name; }
-
-private:
- std::string m_name;
- bgfx_effect* m_effect;
- std::vector<bgfx_texture*> m_inputs;
- bgfx_target* m_output;
-};
-
-#endif // __DRAWBGFX_PASS__ \ No newline at end of file