add context holder & registry & bridge

This commit is contained in:
王劲鹏
2019-12-13 17:45:27 +08:00
parent 64fb425f01
commit 3fdedb6240
11 changed files with 85 additions and 18 deletions

View File

@@ -0,0 +1,12 @@
#ifndef SHADER_PLUGIN_H
#define SHADER_PLUGIN_H
#include "context_holder.h"
class ShaderPlugin : public ContextHolder {
public:
ShaderPlugin(Context* context) : ContextHolder(context) {}
};
#endif // SHADER_PLUGIN_H