diff options
| author | lbavoil <[email protected]> | 2016-04-19 09:26:42 +0200 |
|---|---|---|
| committer | lbavoil <[email protected]> | 2016-04-19 09:26:42 +0200 |
| commit | 4d4f8e91527846a1dcdea1e2b2aa4eed19fe7b25 (patch) | |
| tree | 6b286cfac4923a8d131693a157b256b8154bec39 /src/shaders/out/D3D11/DebugAO_PS.h | |
| parent | Update project files (diff) | |
| download | hbaoplus-4d4f8e91527846a1dcdea1e2b2aa4eed19fe7b25.tar.xz hbaoplus-4d4f8e91527846a1dcdea1e2b2aa4eed19fe7b25.zip | |
Rename folders
Diffstat (limited to 'src/shaders/out/D3D11/DebugAO_PS.h')
| -rw-r--r-- | src/shaders/out/D3D11/DebugAO_PS.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/shaders/out/D3D11/DebugAO_PS.h b/src/shaders/out/D3D11/DebugAO_PS.h new file mode 100644 index 0000000..4c1d701 --- /dev/null +++ b/src/shaders/out/D3D11/DebugAO_PS.h @@ -0,0 +1,38 @@ +//! This file was auto-generated. Do not modify manually. +#pragma once + +namespace Generated +{ + +namespace ShaderPermutations +{ + +#ifndef ENABLE_BLUR_DEFINED +#define ENABLE_BLUR_DEFINED + enum ENABLE_BLUR + { + ENABLE_BLUR_0, + ENABLE_BLUR_1, + ENABLE_BLUR_COUNT, + }; +#endif + +}; + +struct DebugAO_PS +{ + void Create(DevicePointer Device); + void Release(DevicePointer Device); + PixelShader& Get(ShaderPermutations::ENABLE_BLUR A) + { + return m_Shader[A]; + } + +private: + PixelShader m_Shader[ShaderPermutations::ENABLE_BLUR_COUNT]; +#if _WIN32 + static_assert(ShaderPermutations::ENABLE_BLUR_COUNT == 2, ""); +#endif +}; + +}; |