metaforce/Runtime/Graphics/Shaders/CLineRendererShaders.hpp

59 lines
1.7 KiB
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CLINERENDERERSHADERS_HPP__
#define __URDE_CLINERENDERERSHADERS_HPP__
2016-03-04 23:04:53 +00:00
#include "Graphics/CGraphics.hpp"
#include "boo/graphicsdev/GL.hpp"
#include "boo/graphicsdev/D3D.hpp"
#include "boo/graphicsdev/Metal.hpp"
2016-02-23 02:34:16 +00:00
#include "boo/graphicsdev/Vulkan.hpp"
2016-03-04 23:04:53 +00:00
namespace urde
{
class CLineRenderer;
class CLineRendererShaders
{
public:
struct IDataBindingFactory
{
2016-03-30 19:16:01 +00:00
virtual void BuildShaderDataBinding(boo::IGraphicsDataFactory::Context& ctx,
CLineRenderer& renderer,
boo::IShaderPipeline* pipeline,
boo::ITexture* texture)=0;
};
private:
static boo::IShaderPipeline* m_texAlpha;
static boo::IShaderPipeline* m_texAdditive;
static boo::IShaderPipeline* m_noTexAlpha;
static boo::IShaderPipeline* m_noTexAdditive;
2016-02-18 07:36:36 +00:00
static boo::IVertexFormat* m_texVtxFmt;
static boo::IVertexFormat* m_noTexVtxFmt;
static std::unique_ptr<IDataBindingFactory> m_bindFactory;
static boo::GraphicsDataToken m_gfxToken;
public:
2016-03-30 19:16:01 +00:00
static IDataBindingFactory* Initialize(boo::GLDataFactory::Context& ctx);
#if _WIN32
2016-03-30 19:16:01 +00:00
static IDataBindingFactory* Initialize(boo::ID3DDataFactory::Context& ctx);
2016-02-23 02:34:16 +00:00
#endif
#if BOO_HAS_METAL
2016-03-30 19:16:01 +00:00
static IDataBindingFactory* Initialize(boo::MetalDataFactory::Context& ctx);
#endif
2016-02-23 02:34:16 +00:00
#if BOO_HAS_VULKAN
2016-03-30 19:16:01 +00:00
static IDataBindingFactory* Initialize(boo::VulkanDataFactory::Context& ctx);
2016-02-23 02:34:16 +00:00
#endif
static void Initialize();
static void Shutdown();
2016-03-30 19:16:01 +00:00
static void BuildShaderDataBinding(boo::IGraphicsDataFactory::Context& ctx, CLineRenderer& renderer,
boo::ITexture* texture, bool additive);
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CLINERENDERERSHADERS_HPP__