diff options
| author | lbavoil <[email protected]> | 2018-03-15 11:12:25 +0100 |
|---|---|---|
| committer | lbavoil <[email protected]> | 2018-03-15 11:12:25 +0100 |
| commit | 3001f09618f21c234e4be2a55cc14a5252188170 (patch) | |
| tree | 62148ac77da25db1a11c6dfabc986b4dbc8dd2ff | |
| parent | HBAO+ 4.0.0.23740451 (diff) | |
| download | archived-hbaoplus-3001f09618f21c234e4be2a55cc14a5252188170.tar.xz archived-hbaoplus-3001f09618f21c234e4be2a55cc14a5252188170.zip | |
HBAO+ 4.0.0.23740451
| -rw-r--r-- | src/RenderOptions.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/RenderOptions.h b/src/RenderOptions.h deleted file mode 100644 index 3fdebd7..0000000 --- a/src/RenderOptions.h +++ /dev/null @@ -1,41 +0,0 @@ -/* -* Copyright (c) 2008-2017, NVIDIA CORPORATION. All rights reserved. -* -* NVIDIA CORPORATION and its licensors retain all intellectual property -* and proprietary rights in and to this software, related documentation -* and any modifications thereto. Any use, reproduction, disclosure or -* distribution of this software and related documentation without an express -* license agreement from NVIDIA CORPORATION is strictly prohibited. -*/ - -#pragma once -#include "Common.h" - -namespace GFSDK -{ -namespace SSAO -{ - -//-------------------------------------------------------------------------------- -struct RenderOptions -{ - void SetRenderOptions(const GFSDK_SSAO_Parameters& Params) - { - DepthStorage = Params.DepthStorage; - DepthClampMode = Params.DepthClampMode; - Blur = Params.Blur; - EnableForegroundAO = Params.ForegroundAO.Enable; - EnableBackgroundAO = Params.BackgroundAO.Enable; - EnableDepthThreshold = Params.DepthThreshold.Enable; - } - - GFSDK_SSAO_DepthStorage DepthStorage; - GFSDK_SSAO_DepthClampMode DepthClampMode; - GFSDK_SSAO_BlurParameters Blur; - GFSDK_SSAO_BOOL EnableForegroundAO; - GFSDK_SSAO_BOOL EnableBackgroundAO; - GFSDK_SSAO_BOOL EnableDepthThreshold; -}; - -} // namespace SSAO -} // namespace GFSDK |