port from perforce
This commit is contained in:
24
aiwaz/Aiwaz/Resources/Shader/InternalShader.h
Normal file
24
aiwaz/Aiwaz/Resources/Shader/InternalShader.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "IEngine.h"
|
||||
#include "IShader.h"
|
||||
#include "IFileSystem.h"
|
||||
|
||||
|
||||
class InternalShader
|
||||
: public IInternalShader
|
||||
{
|
||||
public:
|
||||
InternalShader(const IEngine& argEngine);
|
||||
virtual ~InternalShader();
|
||||
|
||||
virtual void Uninitialize();
|
||||
|
||||
virtual void LoadFromFile(const string16& argValue);
|
||||
|
||||
virtual ID3D10Effect* get_DX10Effect() const { return m_Effect; }
|
||||
|
||||
protected:
|
||||
const IEngine& m_Engine;
|
||||
ID3D10Effect* m_Effect;
|
||||
};
|
||||
Reference in New Issue
Block a user