diff options
| author | lbavoil <[email protected]> | 2018-03-15 11:08:34 +0100 |
|---|---|---|
| committer | lbavoil <[email protected]> | 2018-03-15 11:08:34 +0100 |
| commit | 636807e68a85a978473764d171ed0c7cc36f9be6 (patch) | |
| tree | 784a3d4fa8f48b4c085dd959678505b2af12f425 /doc | |
| parent | Remove test folder (diff) | |
| download | hbaoplus-636807e68a85a978473764d171ed0c7cc36f9be6.tar.xz hbaoplus-636807e68a85a978473764d171ed0c7cc36f9be6.zip | |
HBAO+ 4.0.0.23740451
Diffstat (limited to 'doc')
19 files changed, 177 insertions, 103 deletions
diff --git a/doc/.buildinfo b/doc/.buildinfo index dcc432b..95ef8d8 100644 --- a/doc/.buildinfo +++ b/doc/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 99127d59ee4b5414a3a9060c37f79b2d +config: 3f951263be95a5a0330b5527f90d88af tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/doc/_sources/changelog.txt b/doc/_sources/changelog.txt index 98c0c31..54a3b4d 100644 --- a/doc/_sources/changelog.txt +++ b/doc/_sources/changelog.txt @@ -4,6 +4,14 @@ Change Log |PRODUCTNAMEDOCRELEASEBOLD| +**New in release 4.0** + +* Add a StepCount parameter. The default value behaves the same as in previous HBAO+ versions. +* Added support for a second input depth texture (to reduce halo artifacts behind foreground objects). +* Fixed possible crash bug (released PSOs still in use on the GPU) when changing AO parameters at runtime on DX12. +* Removed the two-pass-blend option from the DX11 interface. +* Removed support for OpenGL. + **New in release 3.1** * The D3D11 non-UWP DLL now calls NVAPI (when available) to disable any SLI transfers for all render targets. diff --git a/doc/_sources/product.txt b/doc/_sources/product.txt index 5717233..d5a7a2d 100644 --- a/doc/_sources/product.txt +++ b/doc/_sources/product.txt @@ -16,6 +16,7 @@ The algorithm is based on HBAO [Bavoil and Sainz 2008], with the following diffe #. To minimize flickering, the HBAO+ is always rendered in full resolution, from full-resolution depths. +#. To reduce halo artifacts behind foreground objects, HBAO+ can take as input a second depth layer, using the multi-layer SSAO approach from [Bavoil and Sainz 2009] and [McGuire et al. 2013]. .. image:: \_static\hbao-plus-in-tom-clancys-splinter-cell-blacklist-2.jpg @@ -24,7 +25,7 @@ Package ``doc/``\—this documentation page. -``lib/``\—header file, import libraries and DLLs, for Win32, Win64, Mac OS X and Linux. +``lib/``\—header file, import libraries and DLLs, for Win32 and Win64. ``samples/``\—source for sample applications demonstrating NVIDIA HBAO+. @@ -47,6 +48,7 @@ Getting Started GFSDK_SSAO_InputData_D3D11 Input; Input.DepthData.DepthTextureType = GFSDK_SSAO_HARDWARE_DEPTHS; Input.DepthData.pFullResDepthTextureSRV = pDepthStencilTextureSRV; + Input.DepthData.pFullResDepthTexture2ndLayerSRV = pDepthStencilTexture2ndLayerSRV; // Required only if Params.DualLayerAO=true Input.DepthData.ProjectionMatrix.Data = GFSDK_SSAO_Float4x4(pProjectionMatrix); Input.DepthData.ProjectionMatrix.Layout = GFSDK_SSAO_ROW_MAJOR_ORDER; Input.DepthData.MetersToViewSpaceUnits = SceneScale; @@ -60,6 +62,7 @@ Getting Started Params.Blur.Enable = true; Params.Blur.Radius = GFSDK_SSAO_BLUR_RADIUS_4; Params.Blur.Sharpness = 16.f; + Params.DualLayerAO = true; #. SET RENDER TARGET:: @@ -96,6 +99,12 @@ Input Requirements * The library re-allocates its internal render targets if the Viewport.Width or Viewport.Height changes for a given AO context. +* Optionally, can also take as input a second depth texture (second depth layer), to add information about the scene geometry that is hidden behind the first depth layer. + + * This enables removing halo artifacts behind foreground characters, and that with a single call to RenderAO. + + * The second depth layer can simply be a copy of the scene depth buffer before the dynamic geometry is rendered into it. + MSAA Support ++++++++++++++++++++ @@ -248,6 +257,23 @@ The greater the sharpness parameter, the more the blur preserves edges .. image:: \_static\Blur_Sharpness_8.png +Dual Layer +++++++++++++++++++++ + +The dual layer feature increases the overall quality of the AO, by removing halo artifacts behind foreground objects. To use this feature, the application needs to provide a second depth texture via Input.DepthData.pFullResDepthTexture2ndLayerSRV, and set Params.DualLayerAO = true. + +Here are screenshots from our DX11 sample app, which is drawing + +* the shader-ball object into a first depth buffer + +* the shader-ball and background box into a second depth buffer + +and feeding these 2 depth layers as input to RenderAO. + +.. image:: \_static\DualLayer_Disabled.png + +.. image:: \_static\DualLayer_Enabled.png + Integration Time Estimates ########################## @@ -270,12 +296,15 @@ Additional Links `[Bavoil et al. 2008] "Image-Space Horizon-Based Ambient Occlusion" <http://www.nvidia.com/object/siggraph-2008-HBAO.html>`_ +`[Bavoil and Sainz 2009] "Multi-Layer Dual-Resolution Screen-Space Ambient Occlusion" <https://dl.acm.org/citation.cfm?id=1598035>`_ + `[McGuire et al. 2012] "Scalable Ambient Obscurance" <http://graphics.cs.williams.edu/papers/SAOHPG12/>`_ `[Bukowski et al. 2012] "Scalable High-Quality Motion Blur and Ambient Occlusion" <http://graphics.cs.williams.edu/papers/VVSIGGRAPH12/>`_ `[Bavoil and Jansen 2013] "Particle Shadows & Cache-Efficient Post-Processing" <https://developer.nvidia.com/gdc-2013>`_ +`[McGuire et al. 2013] "Lighting Deep G-Buffers: Single-Pass, Layered Depth Images with Minimum Separation Applied to Indirect Illumination" <http://research.nvidia.com/publication/lighting-deep-g-buffers-single-pass-layered-depth-images-minimum-separation-applied>`_ .. Un-comment out if section is used .. Additional Links diff --git a/doc/_sources/releasenotes.txt b/doc/_sources/releasenotes.txt index 8952ef6..9c28ef3 100644 --- a/doc/_sources/releasenotes.txt +++ b/doc/_sources/releasenotes.txt @@ -15,11 +15,8 @@ What's New |VERSIONBOLD| -* Added entry points for D3D12. -* Now shipping separate DLLs and LIB files for D3D11 and GL. -* Added the BackgroundAO parameter, which can be used to add larger-scale occlusion in the distance. -* Removed the BLUR_RADIUS_8 mode (BLUR_RADIUS_4 looks better in general, and runs faster). -* Added per-component debug-normal visualization modes in GFSDK_SSAO_RenderMask. +* Added support for a second input depth texture (to reduce halo artifacts behind foreground objects) +* Removed support for OpenGL. .. ----------------------- diff --git a/doc/changelog.html b/doc/changelog.html index 048dea3..e03bce8 100644 --- a/doc/changelog.html +++ b/doc/changelog.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title>Change Log — NVIDIA HBAO+ 3.1. documentation</title> + <title>Change Log — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="_static/default.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,8 +29,8 @@ <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="index.html" /> - <link rel="prev" title="NVIDIA HBAO+ 3.1." href="product.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="index.html" /> + <link rel="prev" title="NVIDIA HBAO+ 4.0." href="product.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -43,7 +43,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -53,7 +53,7 @@ <h3><a href="index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul class="current"> -<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="product.html#getting-started">Getting Started</a></li> @@ -73,6 +73,7 @@ <li class="toctree-l3"><a class="reference internal" href="product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -89,7 +90,7 @@ </div> <h4>Previous topic</h4> <p class="topless"><a href="product.html" - title="previous chapter">NVIDIA HBAO+ 3.1.</a></p> + title="previous chapter">NVIDIA HBAO+ 4.0.</a></p> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search form-inline" action="search.html" method="get"> @@ -112,7 +113,15 @@ <div class="section" id="change-log"> <h1>Change Log<a class="headerlink" href="#change-log" title="Permalink to this headline">¶</a></h1> -<p><strong>NVIDIA HBAO+ 3.1.</strong></p> +<p><strong>NVIDIA HBAO+ 4.0.</strong></p> +<p><strong>New in release 4.0</strong></p> +<ul class="simple"> +<li>Add a StepCount parameter. The default value behaves the same as in previous HBAO+ versions.</li> +<li>Added support for a second input depth texture (to reduce halo artifacts behind foreground objects).</li> +<li>Fixed possible crash bug (released PSOs still in use on the GPU) when changing AO parameters at runtime on DX12.</li> +<li>Removed the two-pass-blend option from the DX11 interface.</li> +<li>Removed support for OpenGL.</li> +</ul> <p><strong>New in release 3.1</strong></p> <ul class="simple"> <li>The D3D11 non-UWP DLL now calls NVAPI (when available) to disable any SLI transfers for all render targets.</li> @@ -211,7 +220,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/genindex.html b/doc/genindex.html index 2c8a263..840440a 100644 --- a/doc/genindex.html +++ b/doc/genindex.html @@ -8,7 +8,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title>Index — NVIDIA HBAO+ 3.1. documentation</title> + <title>Index — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="_static/default.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -19,7 +19,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -30,7 +30,7 @@ <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="index.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -43,7 +43,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -53,7 +53,7 @@ <h3><a href="index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="product.html#getting-started">Getting Started</a></li> @@ -73,6 +73,7 @@ <li class="toctree-l3"><a class="reference internal" href="product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -126,7 +127,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/index.html b/doc/index.html index dd2c33a..f86d141 100644 --- a/doc/index.html +++ b/doc/index.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title>NVIDIA HBAO+ — NVIDIA HBAO+ 3.1. documentation</title> + <title>NVIDIA HBAO+ — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="_static/default.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,8 +29,8 @@ <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="#" /> - <link rel="next" title="NVIDIA HBAO+ 3.1." href="product.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="#" /> + <link rel="next" title="NVIDIA HBAO+ 4.0." href="product.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -43,7 +43,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="#">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="#">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -53,7 +53,7 @@ <h3><a href="#">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="product.html#getting-started">Getting Started</a></li> @@ -73,6 +73,7 @@ <li class="toctree-l3"><a class="reference internal" href="product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -89,7 +90,7 @@ </div> <h4>Next topic</h4> <p class="topless"><a href="product.html" - title="next chapter">NVIDIA HBAO+ 3.1.</a></p> + title="next chapter">NVIDIA HBAO+ 4.0.</a></p> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search form-inline" action="search.html" method="get"> @@ -122,7 +123,7 @@ <p><strong>Browse Documentation</strong></p> <div class="toctree-wrapper compound"> <ul> -<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 3.1.</a></li> +<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 4.0.</a></li> <li class="toctree-l1"><a class="reference internal" href="changelog.html">Change Log</a></li> </ul> </div> @@ -138,7 +139,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="#">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="#">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/objects.inv b/doc/objects.inv index 2447d32..71d5c21 100644 --- a/doc/objects.inv +++ b/doc/objects.inv @@ -1,6 +1,6 @@ # Sphinx inventory version 2 # Project: NVIDIA HBAO+ -# Version: 3.1. +# Version: 4.0. # The remainder of this file is compressed using zlib. x�m�� �0��}�A�n� ��¤�2�^@�э�6:��������|?�k�PF@OЋ�.JЄ��
��L�V/�يNI^(���^�����
^ZCWl����J��uEu/@��;��8*! diff --git a/doc/product.html b/doc/product.html index 16cac7c..cda45d3 100644 --- a/doc/product.html +++ b/doc/product.html @@ -1,4 +1,4 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title>NVIDIA HBAO+ 3.1. — NVIDIA HBAO+ 3.1. documentation</title> + <title>NVIDIA HBAO+ 4.0. — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="_static/default.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,7 +29,7 @@ <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="index.html" /> <link rel="next" title="Change Log" href="changelog.html" /> <link rel="prev" title="NVIDIA HBAO+" href="index.html" /> </head> @@ -44,7 +44,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -54,7 +54,7 @@ <h3><a href="index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul class="current"> -<li class="toctree-l1 current"><a class="current reference internal" href="">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1 current"><a class="current reference internal" href="">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="#getting-started">Getting Started</a></li> @@ -74,6 +74,7 @@ <li class="toctree-l3"><a class="reference internal" href="#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="#integration-time-estimates">Integration Time Estimates</a></li> @@ -115,7 +116,7 @@ <div class="body"> <div class="section" id="productname-version"> -<h1>NVIDIA HBAO+ 3.1.<a class="headerlink" href="#productname-version" title="Permalink to this headline">¶</a></h1> +<h1>NVIDIA HBAO+ 4.0.<a class="headerlink" href="#productname-version" title="Permalink to this headline">¶</a></h1> <div class="section" id="overview"> <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2> <p>HBAO+ is a SSAO algorithm designed to achieve high GPU efficiency. @@ -124,6 +125,7 @@ The algorithm is based on HBAO [Bavoil and Sainz 2008], with the following diffe <li>To minimize cache trashing, HBAO+ does not use any randomization texture. Instead, the algorithm uses an Interleaved Rendering approach, generating the AO in multiple passes with a unique jitter value per pass [Bavoil and Jansen 2013].</li> <li>To avoid over-occlusion artifacts, HBAO+ uses a simpler AO approximation than HBAO, similar to “Scalable Ambient Obscurance” [McGuire et al. 2012] [Bukowski et al. 2012].</li> <li>To minimize flickering, the HBAO+ is always rendered in full resolution, from full-resolution depths.</li> +<li>To reduce halo artifacts behind foreground objects, HBAO+ can take as input a second depth layer, using the multi-layer SSAO approach from [Bavoil and Sainz 2009] and [McGuire et al. 2013].</li> </ol> <img alt="_images/hbao-plus-in-tom-clancys-splinter-cell-blacklist-2.jpg" src="_images/hbao-plus-in-tom-clancys-splinter-cell-blacklist-2.jpg" /> </div> @@ -151,6 +153,7 @@ assert(status == GFSDK_SSAO_OK); // HBAO+ requires feature level 11_0 or above</ <div class="highlight-python"><pre>GFSDK_SSAO_InputData_D3D11 Input; Input.DepthData.DepthTextureType = GFSDK_SSAO_HARDWARE_DEPTHS; Input.DepthData.pFullResDepthTextureSRV = pDepthStencilTextureSRV; +Input.DepthData.pFullResDepthTexture2ndLayerSRV = pDepthStencilTexture2ndLayerSRV; // Required only if Params.DualLayerAO=true Input.DepthData.ProjectionMatrix.Data = GFSDK_SSAO_Float4x4(pProjectionMatrix); Input.DepthData.ProjectionMatrix.Layout = GFSDK_SSAO_ROW_MAJOR_ORDER; Input.DepthData.MetersToViewSpaceUnits = SceneScale;</pre> @@ -163,7 +166,8 @@ Params.Bias = 0.1f; Params.PowerExponent = 2.f; Params.Blur.Enable = true; Params.Blur.Radius = GFSDK_SSAO_BLUR_RADIUS_4; -Params.Blur.Sharpness = 16.f;</pre> +Params.Blur.Sharpness = 16.f; +Params.DualLayerAO = true;</pre> </div> </li> <li><p class="first">SET RENDER TARGET:</p> @@ -197,6 +201,11 @@ assert(status == GFSDK_SSAO_OK);</pre> <li>The library re-allocates its internal render targets if the Viewport.Width or Viewport.Height changes for a given AO context.</li> </ul> </li> +<li>Optionally, can also take as input a second depth texture (second depth layer), to add information about the scene geometry that is hidden behind the first depth layer.<ul> +<li>This enables removing halo artifacts behind foreground characters, and that with a single call to RenderAO.</li> +<li>The second depth layer can simply be a copy of the scene depth buffer before the dynamic geometry is rendered into it.</li> +</ul> +</li> </ul> </div> <div class="section" id="msaa-support"> @@ -330,6 +339,18 @@ assert(status == GFSDK_SSAO_OK);</pre> <img alt="_images/Blur_Sharpness_0.png" src="_images/Blur_Sharpness_0.png" /> <img alt="_images/Blur_Sharpness_8.png" src="_images/Blur_Sharpness_8.png" /> </div> +<div class="section" id="dual-layer"> +<h3>Dual Layer<a class="headerlink" href="#dual-layer" title="Permalink to this headline">¶</a></h3> +<p>The dual layer feature increases the overall quality of the AO, by removing halo artifacts behind foreground objects. To use this feature, the application needs to provide a second depth texture via Input.DepthData.pFullResDepthTexture2ndLayerSRV, and set Params.DualLayerAO = true.</p> +<p>Here are screenshots from our DX11 sample app, which is drawing</p> +<ul class="simple"> +<li>the shader-ball object into a first depth buffer</li> +<li>the shader-ball and background box into a second depth buffer</li> +</ul> +<p>and feeding these 2 depth layers as input to RenderAO.</p> +<img alt="_images/DualLayer_Disabled.png" src="_images/DualLayer_Disabled.png" /> +<img alt="_images/DualLayer_Enabled.png" src="_images/DualLayer_Enabled.png" /> +</div> </div> <div class="section" id="integration-time-estimates"> <h2>Integration Time Estimates<a class="headerlink" href="#integration-time-estimates" title="Permalink to this headline">¶</a></h2> @@ -350,9 +371,11 @@ assert(status == GFSDK_SSAO_OK);</pre> <div class="section" id="additional-links"> <h2>Additional Links<a class="headerlink" href="#additional-links" title="Permalink to this headline">¶</a></h2> <p><a class="reference external" href="http://www.nvidia.com/object/siggraph-2008-HBAO.html">[Bavoil et al. 2008] “Image-Space Horizon-Based Ambient Occlusion”</a></p> +<p><a class="reference external" href="https://dl.acm.org/citation.cfm?id=1598035">[Bavoil and Sainz 2009] “Multi-Layer Dual-Resolution Screen-Space Ambient Occlusion”</a></p> <p><a class="reference external" href="http://graphics.cs.williams.edu/papers/SAOHPG12/">[McGuire et al. 2012] “Scalable Ambient Obscurance”</a></p> <p><a class="reference external" href="http://graphics.cs.williams.edu/papers/VVSIGGRAPH12/">[Bukowski et al. 2012] “Scalable High-Quality Motion Blur and Ambient Occlusion”</a></p> <p><a class="reference external" href="https://developer.nvidia.com/gdc-2013">[Bavoil and Jansen 2013] “Particle Shadows & Cache-Efficient Post-Processing”</a></p> +<p><a class="reference external" href="http://research.nvidia.com/publication/lighting-deep-g-buffers-single-pass-layered-depth-images-minimum-separation-applied">[McGuire et al. 2013] “Lighting Deep G-Buffers: Single-Pass, Layered Depth Images with Minimum Separation Applied to Indirect Illumination”</a></p> <div class="toctree-wrapper compound"> <ul class="simple"> </ul> @@ -369,7 +392,7 @@ assert(status == GFSDK_SSAO_OK);</pre> <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/releasenotes.html b/doc/releasenotes.html index fe7f760..0616f0b 100644 --- a/doc/releasenotes.html +++ b/doc/releasenotes.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title>Release Notes — NVIDIA HBAO+ 3.1. documentation</title> + <title>Release Notes — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="_static/default.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,7 +29,7 @@ <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="index.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -42,7 +42,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -52,7 +52,7 @@ <h3><a href="index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="product.html#getting-started">Getting Started</a></li> @@ -72,6 +72,7 @@ <li class="toctree-l3"><a class="reference internal" href="product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -108,18 +109,15 @@ <div class="section" id="release-notes"> <h1>Release Notes<a class="headerlink" href="#release-notes" title="Permalink to this headline">¶</a></h1> -<p><strong>NVIDIA HBAO+ 3.1.</strong></p> +<p><strong>NVIDIA HBAO+ 4.0.</strong></p> <p>NVIDIA HBAO+ improves upon existing Ambient Occlusion techniques to add richer, more detailed, more realistic shadows around objects that occlude rays of light. Compared to previous techniques, HBAO+ is faster, more efficient, and significantly better.</p> <div class="section" id="what-s-new"> <h2>What’s New<a class="headerlink" href="#what-s-new" title="Permalink to this headline">¶</a></h2> <p><strong>General</strong></p> -<p><strong>3.1.</strong></p> +<p><strong>4.0.</strong></p> <ul class="simple"> -<li>Added entry points for D3D12.</li> -<li>Now shipping separate DLLs and LIB files for D3D11 and GL.</li> -<li>Added the BackgroundAO parameter, which can be used to add larger-scale occlusion in the distance.</li> -<li>Removed the BLUR_RADIUS_8 mode (BLUR_RADIUS_4 looks better in general, and runs faster).</li> -<li>Added per-component debug-normal visualization modes in GFSDK_SSAO_RenderMask.</li> +<li>Added support for a second input depth texture (to reduce halo artifacts behind foreground objects)</li> +<li>Removed support for OpenGL.</li> </ul> <div class="toctree-wrapper compound"> <ul class="simple"> @@ -137,7 +135,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/search.html b/doc/search.html index 68682b2..f991204 100644 --- a/doc/search.html +++ b/doc/search.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title>Search — NVIDIA HBAO+ 3.1. documentation</title> + <title>Search — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="_static/default.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -30,7 +30,7 @@ <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="_static/searchtools.js"></script> <script type="text/javascript" src="_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="index.html" /> <script type="text/javascript"> jQuery(function() { Search.loadIndex("searchindex.js"); }); </script> @@ -50,7 +50,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -60,7 +60,7 @@ <h3><a href="index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="product.html#getting-started">Getting Started</a></li> @@ -80,6 +80,7 @@ <li class="toctree-l3"><a class="reference internal" href="product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -131,7 +132,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/searchindex.js b/doc/searchindex.js index a90f763..22226fb 100644 --- a/doc/searchindex.js +++ b/doc/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:42,terms:{txaa:1,prefix:7,typeerror:7,ronaldoussoren:7,umask:7,swap:7,under:[1,7],spec:7,directorysandbox:7,everi:7,risk:7,appar:7,upload:7,unmanag:7,bdist_egg:7,find_on_path:7,direct:[9,1,7],second:7,even:[1,7],hide:[1,3],blur:3,"new":[1,3],gl3:1,ever:7,metadata:7,nvapi:3,abov:1,gfsdk_ssao_perform:3,never:7,here:[9,2,7],path:7,interpret:7,dry:7,reenabl:7,anymor:7,test_local_index:7,adopt:7,precis:3,brought:7,txt:7,unit:[1,7],describ:7,would:7,invalidurl:7,call:[7,3],typo:7,recommend:[1,7],type:[7,3],tell:7,warn:7,hole:7,unpack:7,must:7,restor:[7,3],check_packag:7,setup:7,work:7,root:7,dither:1,poutputcolorrtv:1,overrid:7,defer:7,give:7,gfsdk_ssao_ok:1,indic:[9,7],pd3d11context:1,want:7,uac:7,david:7,end:7,quot:7,how:7,config:7,updat:7,uwp:3,recogn:7,after:[2,7],superus:7,befor:[2,7],wrong:7,beauti:9,demonstr:1,attempt:7,third:7,credenti:7,exclud:7,perform:3,getbuildstr:3,maintain:7,environ:7,order:7,oper:[1,7],composit:3,over:[1,7],fall:[1,7],becaus:7,privileg:7,flexibl:9,tarfil:7,cli:7,fix:[1,7],better:[0,6,7,3],easier:7,them:7,thei:7,fragment:7,slate:7,safe:7,rectangl:1,band:1,grammar:7,accommod:7,timeout:7,each:[1,7],debug:[6,3],side:7,mean:7,render_debug_normal_z:3,extras_requir:7,gfsdk_ssao_invalid_viewport_depth_rang:3,extract:7,network:7,standard:7,md5:7,filter:[1,7],pythonioencod:7,ish:7,regress:7,rang:1,render:[1,3],pyrex:7,independ:7,hook:7,alreadi:7,wrapper:7,upload_doc:7,wasn:7,top:7,mercuri:7,underlin:[4,5,8],too:1,zipfil:7,ssl_match_hostnam:7,consol:7,boostrap:7,namespac:7,tool:[9,7],setuptool:9,get_resource_filenam:7,somewhat:7,target:[1,7,3],keyword:7,provid:[1,7],tree:[9,7],project:[9,1,7],matter:7,rai:[0,6],raw:7,seen:7,seem:7,strength:9,unresolv:7,thoroughli:7,depthtexturetyp:1,usernam:7,object:[0,1,6,7],monkeypatch:7,specifi:[7,3],tradit:7,don:7,doc:[1,7],doe:[1,7],declar:7,random:1,syntax:7,pkg:7,layout:1,configur:7,exclude_package_data:7,svn875:7,ssl_support:7,report:7,reconstruct:1,zfar:1,rendermask:3,bar:7,cpython:7,emb:7,method:7,twice:7,bad:7,open_url:7,msaa:3,get_cache_path:7,respons:7,fail:7,best:7,figur:7,awai:[1,7],approach:1,attribut:7,accord:7,extend:7,gfsdk_ssao_parameters_gl:3,extens:[9,7],toler:7,protect:7,against:7,new_:1,logic:7,com:7,gfsdk_ssao_overwrite_rgb:1,ez_setup:7,had:7,projectionmatrix:1,loader:7,tarek:7,guid:7,duplic:7,pkgutil:7,beef:7,numpi:7,been:7,trigger:7,trickeri:7,linker:7,declare_namespac:7,suppress:7,argument:[7,3],child:7,"catch":7,ident:7,launcher:7,servic:7,scissorrect:3,sourceforg:7,prendertargetview:1,sli:3,build_sphinx:7,powershel:7,sever:7,native_lib:7,receiv:[1,7],make:[9,1,7],gfsdk_ssao_blurradiu:3,complex:1,split:7,ssao_depththreshold:3,complet:7,wheel:7,hand:7,rais:7,match_hostnam:7,tune:1,undesir:7,"_encode_auth":7,thu:7,client:7,thi:[1,7],vanlindberg:7,everyth:7,left:7,just:7,yet:7,languag:9,previous:7,easi:[9,7],help:[9,1,7],macport:7,els:7,save:[7,3],opt:7,applic:[1,7],preserv:[1,7],sw_ver:7,firmer:7,shadow:[0,1,6,7],bavoil:1,add_entri:7,specif:7,arbitrari:1,manual:[9,7],install_requir:7,right:7,old:7,deal:7,detailao:3,intern:[1,7,3],forcibl:7,bottom:7,subclass:7,enable_user_sit:7,multipli:1,tracker:7,condit:7,foo:7,creatur:7,insecur:7,viewdepth:1,repositori:7,post:[1,7],plug:7,occlus:0,py24:7,slightli:7,occlud:[0,6],delete_:1,horizon:1,breakag:7,produc:7,xyz:3,encod:7,has_user_sit:7,wrap:7,accordingli:7,wai:7,support:3,avail:[9,7,3],width:1,cant_write_to_target:7,analysi:7,head:10,form:7,forc:7,setuptools_launch:7,"true":[1,7],reset:[7,3],gfsdk_ssao_paramet:[1,3],until:[1,7],trim:7,featur:[9,1,7],drive:7,exist:[0,6,7],gui_script:7,ship:[6,3],check:7,graft:7,when:[1,7,3],refactor:7,test:[9,7],matur:7,intend:7,consid:7,bitbucket:7,faster:[0,6,3],working_set:7,ignor:[1,7],osx:7,concept:7,skip:7,global:[1,7],signific:7,hierarch:9,depend:7,readabl:7,rel:7,userwarn:7,sourc:[9,1,7],gfsdk_ssao_depththreshold:3,string:7,brows:0,cool:7,level:[10,1,7],did:7,gui:7,quick:1,prevent:7,height:1,appear:[1,7],"64bit":7,uniform:1,current:7,deriv:9,urlopen:7,gener:[9,1,7,6,3],satisfi:7,bdist_wininst:7,address:7,along:1,checksum:7,bom:7,gfsdk_ssao_glfunct:3,bob:7,semant:9,regardless:7,misc:7,extra:7,modul:[9,7],prefer:7,depthclampmod:3,wget:7,marker:7,pd3d11devic:1,visit:0,subvers:7,msi:7,checkout:7,unsaf:7,enhanc:7,visual:[6,3],templat:[9,7],zip_saf:7,effort:7,pretend:7,uniqu:1,can:[9,1,6,7],fulton:7,nearest:1,occur:7,alwai:[1,7],multipl:[9,1,7],write:7,map:1,product:0,mac:[1,3],getdefaultlocal:7,mai:[1,7],underscor:7,data:3,man:1,stress:7,practic:[1,7],explicit:7,mangl:7,inform:[9,7],sandbox:7,per_sample_ao:3,talk:7,still:7,pointer:3,pfullresdepthtexturesrv:1,conjunct:7,group:7,thank:7,jim:7,platform:7,mail:7,main:7,non:[7,3],markerlib:7,initi:[1,7],therebi:7,now:[6,7,3],discuss:7,term:9,name:7,realist:[0,6],didn:7,revert:7,separ:[6,7,3],attributeerror:7,compil:7,test_get_script_header_jython_workaround:7,replac:[7,3],dx11:3,backport:7,significantli:[0,6],gfsdk_ssao_output_d3d11:1,correct:7,runtimeerror:7,gfsdk_ssao_gpuconfigur:3,org:7,"byte":7,pdepthstenciltexturesrv:1,vestigi:7,exuber:7,top_level:7,motion:1,thing:7,place:7,first:7,origin:[9,7,3],directli:7,onc:[1,7],fetcher:7,submit:7,oppos:7,open:7,depthdata:1,given:[1,7],ian:7,workaround:7,bookmark:7,reli:7,gfsdk_ssao_createcontext_gl:3,especi:7,copi:7,artifact:[1,3],than:[1,7,3],posix:7,were:7,posit:7,seri:7,pre:7,unbuilt:7,nicer:7,ani:[1,7,3],setparamet:3,engin:[9,1,7],techniqu:[0,6,7],alias:7,take:[1,7],advis:7,noth:7,sure:[1,7],normal:[1,7,6,3],buffer:3,pair:7,latex:9,renam:3,pythonhost:7,later:7,get_win_launch:7,runtim:7,gracefulli:7,subprocess:7,permiss:7,patternlist:7,lookuperror:7,bick:7,xml:7,onli:[1,7],explicitli:7,activ:7,written:[9,1,7],"_zip_directory_cach":7,offici:7,variou:[9,7],repo:7,ssl:7,cannot:7,embedd:7,gfsdk_ssao_rendermask:[6,3],yield:7,scenescal:[1,3],arfrev:7,where:7,kernel:1,gfsdk_ssao_unsupported_viewport_dimens:3,proce:7,detect:7,parent:[9,7],review:7,staffer:7,between:[1,7],"import":[1,7],across:[1,7],setup_requir:7,screen:1,cycl:7,come:9,dont_patch_setuptool:7,tutori:7,gfsdk_ssao_context_d3d11:1,improv:[0,6,7],among:9,jitter:1,pow:1,unittest:7,inspir:7,"11_0":1,coupl:7,rebuild:7,invers:1,mark:7,rebuilt:7,certifi:7,valueerror:7,resolut:[1,7,3],findal:7,those:7,"case":[7,3],zooko:7,gfsdk_ssao_blursharpnessprofil:3,include_package_data:7,mcguir:1,cast:1,invok:7,invoc:7,ctrl:7,ambient:[0,1,6],ascii:7,"__init__":7,develop:[0,9,7],author:7,impwrapp:7,same:[1,7],binari:7,html:[9,7],document:[0,1,10,9,7],finish:7,foregroundviewdepth:1,utf8:7,nest:7,driver:7,mani:[9,7],extern:7,appropri:[9,7],inconsist:7,markup:9,without:7,largescaleao:3,execut:7,excel:9,use_setuptool:7,rest:7,aspect:7,backgroundviewdepth:1,except:7,param:[1,3],vulner:7,earli:7,around:[0,6,7],read:7,swig:7,powerexpon:[1,3],dark:1,world:7,httpmessag:7,whitespac:7,either:7,output:[9,1,7,3],manag:7,fulfil:7,definit:[9,1],exit:7,refer:[9,7,3],ippolito:7,gztar:7,inspect:7,broken:7,found:[9,1,7],"throw":7,comparison:7,blur_radius_2:3,blur_radius_4:[6,3],blur_radius_8:[6,3],backgroundao:[6,3],clamp:3,effici:[0,1,6],console_script:7,interleav:1,strip:7,your:7,lod:1,area:1,aren:7,interfac:3,low:1,ipv6:7,regard:7,viewport:[1,3],longer:7,pull:7,possibl:7,"default":[7,3],setinputdepth:3,deadlock:7,expect:7,taylor:7,scanner:7,creat:[9,7],certain:7,strongli:1,decreas:1,file:[1,7,6,3],"_vcs_split_rev_from_url":7,proport:1,again:7,googl:7,prepend:7,tight:7,valid:7,writabl:7,you:[1,7],trash:1,brandl:9,docstr:9,track:7,jansen:1,reduc:1,directori:7,mask:[7,3],potenti:3,represent:7,all:[1,7,3],dist:7,pth:7,lack:7,deprecationwarn:7,abil:7,follow:[9,1,7],disk:1,children:9,articl:7,program:7,unladen:7,introduc:7,straightforward:9,fals:[1,7],subcommand:7,failur:7,veri:[1,7],egg_info:7,list:7,adjust:1,stderr:7,sajip:7,superced:7,gfsdk_ssao_hardware_depths_sub_rang:3,dimens:[1,3],krekel:7,zero:[1,7,3],design:[1,7],pass:[1,7,3],further:7,what:1,sub:[1,7],depthstorag:3,section:[10,7],easy_inst:7,delet:[1,7],version:7,indexsidebar:7,"public":7,full:[1,7,3],hash:7,trunk:7,modifi:7,valu:[1,7,3],search:[0,1,7],gfsdk_ssao_statu:1,ahead:7,view_depth:3,prior:7,doctest:7,via:7,verifyinghttpsconn:7,reiniti:7,deprec:7,establish:7,gfsdk_ssao_createcontext_d3d11:1,regist:7,two:[7,3],taken:[1,7],minor:7,flat:7,supersampl:3,flag:7,broke:7,cach:[1,7],none:7,hour:1,dep:7,phillip:7,versionconflict:7,dev:7,remain:7,d3d12:[1,6,3],d3d11:[1,6,3],scan:7,share:7,accept:7,minimum:1,sharp:3,cours:7,newlin:7,secur:7,rather:7,anoth:[10,7],comfort:7,snippet:9,outputrtv:3,simpl:7,regener:7,resourc:7,referenc:7,associ:[1,7],pprojectionmatrix:1,github:7,roundtrip:7,caus:[1,7],nvidia:3,egg:[9,7],rotat:7,soon:7,through:7,paramet:3,style:7,archive_util:7,relev:3,late:7,might:7,alter:3,good:7,"return":7,sentenc:7,complain:7,httplib:7,easili:7,achiev:1,additional_test:7,fulli:7,unicod:7,subsystem:7,inplac:7,weight:[1,3],dylib:7,idea:7,connect:7,event:7,safeti:7,print:7,subsubsect:10,remvov:7,proxi:7,uncommit:7,base:1,put:7,bash:7,launch:7,omit:7,package_index:7,number:[1,7],done:7,blank:7,miss:7,build_ext:7,nearao:1,differ:[1,7],projectnam:7,construct:7,natur:7,sainz:1,gpu:1,shadowwork:0,option:[1,7,3],part:7,pars:[9,7],consult:7,hashlib:7,remov:[1,7,6,3],reus:7,toward:1,comput:7,"null":3,distributionnotfound:7,foregroundao:3,built:7,lib2to3:7,florian:7,self:7,also:[1,7],build:7,exec:7,previou:[0,6,7],most:7,plai:7,plan:[9,7],compar:[0,6,7],finalao:1,clean:7,blend:[1,3],microsoft:7,wsgi:7,flicker:1,entry_point:7,fine:7,find:7,impact:1,firewal:7,test_develop:7,writer:7,solut:7,darwin:7,nativ:7,certif:7,set:[1,7],"_full_nam":7,see:[7,3],arg:7,float4:3,close:7,arm:7,guinea:7,won:7,altern:7,gfsdk_ssao_row_major_ord:1,web:7,gethead:7,coarseao:3,solv:7,both:7,last:7,hbao:3,alon:7,eager_resourc:7,roman:7,package_data:7,context:1,pdf:9,whole:1,load:7,simpli:7,point:[1,7,6,3],arbitrarili:1,header:[1,7],suppli:7,pycon:7,becom:7,due:7,empti:7,sinc:7,gfsdk_ssao_blur_radius_2:3,gfsdk_ssao_hardware_depth:1,chandler:7,gfsdk_ssao_blur_radius_4:1,strategi:1,setopt:7,execfil:7,imag:1,coordin:[1,7],educ:7,makedir:7,customheap:1,look:[1,7,6,3],"while":7,osaf:7,unifi:7,behavior:7,error:[7,3],loop:7,subsect:10,readm:7,itself:7,minim:1,decod:7,conflict:7,higher:7,pylaunch:7,optim:3,temporari:7,user:[7,3],robust:7,implement:7,recent:7,lower:7,machineri:7,older:7,find_packag:7,entri:[1,7,6,3],pickl:7,elev:7,propos:7,renderao:[1,3],bilater:1,obscur:1,"__path__":7,password:7,restructuredtext:9,input:3,approxim:1,finder:7,bin:7,format:[9,7],file_find:7,game:1,bit:7,httpexcept:7,docutil:9,resolv:7,manifest:7,api:[7,3],often:7,creation:7,some:7,back:7,virtualenv:7,scale:[1,6],pep:7,per:[1,7,6,3],larg:1,slash:7,nose:7,smallscaleao:3,run:[6,7,3],python_egg_cach:7,dependency_link:7,namespace_packag:7,block:7,repair:7,emphasi:7,pythonpath:7,within:7,ensur:7,inclus:9,question:7,"long":7,custom:7,includ:9,suit:[9,7],forward:7,properli:7,gfsdk_ssao_float4x4:1,translat:[9,7],newer:7,line:7,info:[1,7],utf:7,consist:[9,7],coomb:7,highlight:9,similar:[9,1],parser:7,doesn:7,zip_ok:7,curl:7,saveopt:7,gfsdk_ssao_draw_debug_n:3,objection:1,invalid:7,codec:7,librari:[1,7],distribute_disable_versioned_easy_install_script:7,gfsdk_ssao_customheap:1,svn:7,algorithm:[1,7],rst2pdf:9,depth:[1,3],fresh:7,scroll:7,code:[9,7,3],partial:[7,3],edg:1,package_dir:7,cython:7,privat:7,elsewher:7,fatal:7,unzip:7,distribute_setup:7,runnabl:7,py2app:7,"try":7,race:7,pleas:7,badstatuslin:7,cfg:7,fullnam:[4,5,8],compat:7,index:[9,7],test_load:7,experiment:7,vinai:7,let:[7,3],parsed_vers:7,implicit:7,convert:[1,7],no_fak:7,convers:7,holger:7,getfilesystemencod:7,larger:[1,7,6,3],technolog:7,distribute_setup_3k:7,typic:1,honor:7,chanc:7,install_egg_info:7,appli:7,app:7,foundat:7,"boolean":7,redo:7,fed:1,from:[9,1],zip:7,commun:7,toshio:7,camera:1,usr:7,panel:7,sort:7,"__stdout__":7,account:7,retriev:7,scalabl:1,tunnel:7,alia:7,run_setup:7,fetch:7,test_easy_instal:7,control:[1,7,3],malform:7,process:[1,7],sdist:7,sudo:7,high:1,tag:7,tarbal:7,georg:9,sig:7,subdirectori:7,instead:[1,7,3],overridden:7,redund:7,alloc:1,drop:7,light:[0,6],mac_ver:7,issu:7,allow:7,fallback:7,blendstat:3,move:[7,3],meter:1,sysconfig:7,us_ascii:7,bunch:7,meterstoviewspaceunit:3,re_find:7,infrastructur:7,therefor:7,pixel:1,crash:7,greater:1,python:9,dissolv:1,dai:1,auth:7,front:7,edit:7,resourcewarn:7,nameerror:7,mode:[1,7,6,3],pygment:9,intellig:9,patch:7,special:7,out:7,variabl:[1,7],suitabl:7,ssao:1,setinputdata:3,matric:3,insid:7,standalon:7,releas:3,philip:7,customblendst:3,unwant:7,could:7,opengl:3,unpack_arch:7,keep:7,length:7,outsid:7,paocontext:1,retain:7,suffix:7,qualiti:[1,3],date:7,lib:[1,7,6,3],facil:9,stencil:3,unknown:7,mkdir:7,messag:7,attach:7,termin:7,"final":1,prone:3,shell:7,accompani:7,rst:7,prune:7,unpack_directori:7,richer:[0,6],structur:[9,7],charact:7,result:7,py2:7,py3:7,corrupt:7,have:[1,7],need:7,turn:7,border:1,"switch":7,builtin:7,which:[6,7],singl:[7,3],textur:[1,3],unless:7,deploy:7,whl:7,pyo:7,pyc:7,"class":[9,7,3],epub:9,url:7,request:7,filelist:7,snapshot:7,determin:7,schulz:7,text:[9,2],syntaxerror:7,anywai:7,locat:7,nois:1,should:[1,2,7],local:7,devnul:7,pypa:7,contribut:[1,7],pypi:7,bear:7,autom:7,"2009q3":7,increas:1,tests_requir:7,enabl:[1,7],fixer:7,contain:7,view:[0,1],legaci:7,ebi:7,particl:1,closer:1,statu:1,invalid_mark:7,correctli:[1,7],pattern:7,dll:[1,7,6,3],state:[7,3],progress:7,tent:7,kei:7,parseabl:7,overhaul:7,disallow:7,plugin:7,etc:7,gfsdk_ssao_getvers:3,swallow:7,comment:7,invalid_viewport_dimens:3,gfsdk_ssao_per_sample_ao:3,respect:7,rpm:7,farao:1,extra_path:7,compon:[6,3],treat:7,immedi:7,pypirc:7,mike:7,internalviewnorm:3,presenc:7,assert:[1,7],present:7,multi:7,plain:9,"__pycache__":7,defin:[1,7],glossari:9,site:7,dont_write_bytecod:7,substanti:7,fiddl:7,revis:7,parti:7,cross:[9,1,7],handl:[9,7],impimport:7,http:7,py3k:7,upon:[0,6],distutil:7,expand:7,off:1,center:1,well:[9,7],exampl:7,command:7,sibl:9,latest:7,distanc:6,less:[1,7,3],pythonw:7,eggsecut:7,jinja:9,script:7,add:[0,1,6,7],setuptools_disable_versioned_easy_install_script:7,exempt:7,match:[1,7],jython:7,piec:9,gbuffer:1,know:7,bukowski:1,recurs:7,python3:7,python2:7,like:1,success:7,api_test:7,page:[0,1,9,7],setupt:7,bdist_rpm:7,revers:7,thiem:7,linux:[1,7],home:[0,7],mainli:7,win32:1,trust:7,buildout:7,lead:7,avoid:[1,7],sandboxviol:7,leav:7,command_consumes_argu:7,trap:7,importerror:7,win64:1,usag:7,symlink:7,host:7,obei:7,although:7,simpler:1,actual:7,socket:7,disabl:[1,7,3],own:7,gfsdk_ssao_inputdata_d3d11:1,automat:[9,7],setinputnorm:3,merg:[7,3],"6c12":7,"6c11":7,transfer:3,jason:7,"function":[9,7,3],keyerror:7,spuriou:7,eas:7,highest:7,bug:7,count:1,pnormaldata:3,made:7,getpreferredencod:7,whether:7,resourcemanag:7,displai:7,otherwis:7,problem:7,createabl:7,pim:7,packageindex:7,dure:7,filenam:7,pig:7,pip:7,precreaterendertarget:3,probabl:7,"2to3":7,detail:[0,1,6,7],virtual:7,other:[9,1,7],lookup:7,futur:7,branch:7,py2ex:7,semin:7,tessel:1,sphinx:[9,7],fund:7,space:1,open_with_auth:7},objtypes:{},objnames:{},filenames:["index","product","sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/only","changelog","sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/class","sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/module","releasenotes","sphinx/python-2.7.5/Lib/site-packages/setuptools-2.1.dist-info/DESCRIPTION","sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/base","sphinx/python-2.7.5/Lib/site-packages/Sphinx-1.2.dist-info/DESCRIPTION","sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/contents"],titles:["NVIDIA HBAO+","NVIDIA HBAO+ 3.1.","1. Sections in only directives","Change Log","<no title>","<no title>","Release Notes","Installing and Using Setuptools","<no title>","<no title>","test-only-directive"],objects:{},titleterms:{"5a9":7,"5a8":7,"5a1":7,"5a5":7,"5a4":7,radiu:1,"5a6":7,"3a2":7,"3a1":7,"6a10":7,"6a11":7,paramet:1,onli:[10,2],"6c1":7,window:7,"6c3":7,"6c4":7,"6c5":7,"6c6":7,"6c7":7,input:1,expon:1,get:1,python:7,bia:1,"5a7":7,background:1,"new":6,requir:1,"7b4":7,"6a1":7,level:2,unix:7,integr:1,titl:[4,5,8,9],direct:[10,2],msaa:1,sampl:1,download:7,what:6,section:2,content:7,"6a8":7,estim:1,blur:1,"6a2":7,"6a3":7,subsubsect:2,"6a5":7,foreground:1,power:1,advanc:7,base:7,"5a11":7,"6c2":7,"5a12":7,releas:6,addit:1,about:0,occlus:1,hbao:[0,1],credit:7,chang:[7,3],"4a2":7,meterstoviewspaceunit:1,overview:1,easy_instal:7,system:7,instruct:7,instal:7,from:7,log:3,support:[1,7],upgrad:7,start:1,includ:[2,7],more:0,head:2,setuptool:7,link:1,uninstal:7,pkg_resourc:7,learn:0,easyinstal:7,subsect:2,"6c9":7,packag:1,tabl:7,sharp:1,incompat:7,anoth:2,note:6,"6b4":7,test:10,document:2,pipelin:1,distribut:7,time:1,mac:7,data:1,bootstrap:7,flow:1,"6b3":7,"6b1":7,"6a9":7,nvidia:[0,1],backward:7}})
\ No newline at end of file +Search.setIndex({envversion:42,terms:{txaa:1,prefix:7,typeerror:7,ronaldoussoren:7,umask:7,swap:7,under:[1,7],spec:7,directorysandbox:7,everi:7,risk:7,appar:7,upload:7,unmanag:7,bdist_egg:7,find_on_path:7,direct:[9,1,7],second:[1,7,6,3],illumin:1,even:[1,7],hide:[1,3],blur:3,"new":[1,3],gl3:1,ever:7,metadata:7,nvapi:3,abov:1,gfsdk_ssao_perform:3,never:7,here:[9,1,2,7],path:7,interpret:7,dry:7,reenabl:7,anymor:7,test_local_index:7,adopt:7,precis:3,brought:7,txt:7,unit:[1,7],describ:7,would:7,invalidurl:7,call:[1,7,3],typo:7,recommend:[1,7],type:[7,3],tell:7,warn:7,hole:7,unpack:7,must:7,restor:[7,3],check_packag:7,setup:7,work:7,root:7,dither:1,poutputcolorrtv:1,overrid:7,defer:7,give:7,gfsdk_ssao_ok:1,indic:[9,7],pd3d11context:1,want:7,uac:7,david:7,end:7,quot:7,how:7,config:7,updat:7,uwp:3,recogn:7,after:[2,7],superus:7,befor:[1,2,7],wrong:7,beauti:9,demonstr:1,attempt:7,third:7,credenti:7,exclud:7,alias:7,getbuildstr:3,maintain:7,environ:7,order:7,oper:[1,7],composit:3,over:[1,7],fall:[1,7],becaus:7,privileg:7,flexibl:9,tarfil:7,cli:7,fix:[1,7,3],better:[0,6,7,3],hidden:1,easier:7,them:7,thei:7,fragment:7,slate:7,safe:7,rectangl:1,band:1,grammar:7,accommod:7,timeout:7,each:[1,7],debug:3,side:7,mean:7,render_debug_normal_z:3,extras_requir:7,gfsdk_ssao_invalid_viewport_depth_rang:3,extract:7,network:7,standard:7,md5:7,filter:[1,7],pythonioencod:7,ish:7,regress:7,rang:1,render:[1,3],pyrex:7,independ:7,hook:7,alreadi:7,wrapper:7,upload_doc:7,wasn:7,top:7,mercuri:7,underlin:[4,5,8],too:1,zipfil:7,ssl_match_hostnam:7,consol:7,boostrap:7,namespac:7,tool:[9,7],setuptool:9,get_resource_filenam:7,somewhat:7,target:[1,7,3],keyword:7,provid:[1,7],tree:[9,7],project:[9,1,7],matter:7,rai:[0,6],raw:7,seen:7,seem:7,strength:9,unresolv:7,thoroughli:7,depthtexturetyp:1,usernam:7,object:[0,1,7,6,3],monkeypatch:7,specifi:[7,3],tradit:7,don:7,doc:[1,7],doe:[1,7],declar:7,random:1,syntax:7,pkg:7,layout:1,configur:7,exclude_package_data:7,svn875:7,ssl_support:7,report:7,reconstruct:1,zfar:1,rendermask:3,bar:7,cpython:7,emb:7,method:7,twice:7,bad:7,open_url:7,msaa:3,get_cache_path:7,respons:7,fail:7,best:7,figur:7,awai:[1,7],approach:1,attribut:7,accord:7,extend:7,gfsdk_ssao_parameters_gl:3,extens:[9,7],toler:7,protect:7,against:7,new_:1,logic:7,com:7,gfsdk_ssao_overwrite_rgb:1,ez_setup:7,had:7,projectionmatrix:1,loader:7,tarek:7,guid:7,duplic:7,pkgutil:7,beef:7,numpi:7,been:7,trigger:7,trickeri:7,linker:7,declare_namespac:7,suppress:7,argument:[7,3],child:7,"catch":7,ident:7,launcher:7,servic:7,scissorrect:3,sourceforg:7,prendertargetview:1,sli:3,build_sphinx:7,powershel:7,sever:7,native_lib:7,perform:3,make:[9,1,7],gfsdk_ssao_blurradiu:3,complex:1,split:7,ssao_depththreshold:3,complet:7,wheel:7,hand:7,rais:7,match_hostnam:7,tune:1,undesir:7,"_encode_auth":7,thu:7,client:7,thi:[1,7],vanlindberg:7,everyth:7,left:7,just:7,yet:7,languag:9,previous:7,easi:[9,7],help:[9,1,7],macport:7,els:7,save:[7,3],opt:7,applic:[1,7],preserv:[1,7],sw_ver:7,firmer:7,shadow:[0,1,6,7],bavoil:1,add_entri:7,specif:7,arbitrari:1,manual:[9,7],install_requir:7,right:7,old:7,deal:7,detailao:3,intern:[1,7,3],indirect:1,forcibl:7,bottom:7,subclass:7,enable_user_sit:7,multipli:1,tracker:7,condit:7,foo:7,creatur:7,insecur:7,viewdepth:1,repositori:7,post:[1,7],plug:7,occlus:0,py24:7,slightli:7,occlud:[0,6],delete_:1,horizon:1,breakag:7,produc:7,xyz:3,encod:7,has_user_sit:7,wrap:7,accordingli:7,wai:7,support:3,avail:[9,7,3],width:1,cant_write_to_target:7,analysi:7,head:10,form:7,forc:7,setuptools_launch:7,"true":[1,7],reset:[7,3],gfsdk_ssao_paramet:[1,3],until:[1,7],trim:7,featur:[9,1,7],drive:7,exist:[0,6,7],gui_script:7,ship:3,check:7,graft:7,when:[1,7,3],refactor:7,test:[9,7],matur:7,intend:7,consid:7,bitbucket:7,receiv:[1,7],faster:[0,6,3],working_set:7,ignor:[1,7],osx:7,concept:7,skip:7,global:[1,7],signific:7,hierarch:9,depend:7,readabl:7,rel:7,userwarn:7,sourc:[9,1,7],gfsdk_ssao_depththreshold:3,string:7,brows:0,cool:7,level:[10,1,7],did:7,gui:7,quick:1,prevent:7,height:1,appear:[1,7],"64bit":7,uniform:1,current:7,deriv:9,urlopen:7,gener:[9,1,7,6,3],satisfi:7,bdist_wininst:7,address:7,along:1,box:1,checksum:7,behav:3,gfsdk_ssao_glfunct:3,bob:7,semant:9,regardless:7,misc:7,extra:7,modul:[9,7],prefer:7,depthclampmod:3,wget:7,marker:7,pd3d11devic:1,stepcount:3,visit:0,subvers:7,msi:7,checkout:7,unsaf:7,enhanc:7,visual:3,templat:[9,7],zip_saf:7,effort:7,pretend:7,uniqu:1,can:[9,1,7],fulton:7,nearest:1,occur:7,alwai:[1,7],multipl:[9,1,7],write:7,map:1,product:0,mac:3,getdefaultlocal:7,mai:[1,7],underscor:7,data:3,man:1,stress:7,practic:[1,7],explicit:7,mangl:7,inform:[9,1,7],sandbox:7,per_sample_ao:3,talk:7,still:[7,3],pointer:3,pfullresdepthtexturesrv:1,dynam:1,conjunct:7,group:7,thank:7,jim:7,platform:7,mail:7,main:7,non:[7,3],markerlib:7,initi:[1,7],therebi:7,now:[7,3],discuss:7,halo:[1,6,3],term:9,name:7,realist:[0,6],didn:7,revert:7,separ:[1,7,3],attributeerror:7,compil:7,test_get_script_header_jython_workaround:7,replac:[7,3],dx12:3,dx11:[1,3],backport:7,significantli:[0,6],gfsdk_ssao_output_d3d11:1,correct:7,runtimeerror:7,gfsdk_ssao_gpuconfigur:3,org:7,"byte":7,pdepthstenciltexturesrv:1,vestigi:7,exuber:7,top_level:7,motion:1,thing:7,place:7,first:[1,7],origin:[9,7,3],directli:7,onc:[1,7],fetcher:7,submit:7,oppos:7,open:7,depthdata:1,given:[1,7],ian:7,workaround:7,bookmark:7,reli:7,gfsdk_ssao_createcontext_gl:3,especi:7,copi:[1,7],artifact:[1,6,3],than:[1,7,3],posix:7,were:7,posit:7,seri:7,pre:7,unbuilt:7,nicer:7,ani:[1,7,3],setparamet:3,engin:[9,1,7],techniqu:[0,6,7],take:[1,7],advis:7,noth:7,sure:[1,7],normal:[1,7,3],buffer:[1,3],pair:7,latex:9,renam:3,pythonhost:7,later:7,get_win_launch:7,runtim:[7,3],gracefulli:7,subprocess:7,permiss:7,patternlist:7,lookuperror:7,bick:7,xml:7,onli:[1,7],explicitli:7,activ:7,state:[7,3],"_zip_directory_cach":7,offici:7,variou:[9,7],repo:7,ssl:7,cannot:7,embedd:7,gfsdk_ssao_rendermask:3,yield:7,scenescal:[1,3],arfrev:7,where:7,kernel:1,pdepthstenciltexture2ndlayersrv:1,gfsdk_ssao_unsupported_viewport_dimens:3,proce:7,detect:7,parent:[9,7],review:7,behind:[1,6,3],staffer:7,between:[1,7],"import":[1,7],across:[1,7],setup_requir:7,screen:1,cycl:7,come:9,dont_patch_setuptool:7,tutori:7,gfsdk_ssao_context_d3d11:1,improv:[0,6,7],among:9,jitter:1,pow:1,unittest:7,inspir:7,"11_0":1,coupl:7,rebuild:7,invers:1,mark:7,rebuilt:7,certifi:7,valueerror:7,resolut:[1,7,3],findal:7,those:7,"case":[7,3],zooko:7,gfsdk_ssao_blursharpnessprofil:3,include_package_data:7,mcguir:1,cast:1,invok:7,invoc:7,ctrl:7,ambient:[0,1,6],ascii:7,"__init__":7,develop:[0,9,7],author:7,impwrapp:7,same:[1,7,3],binari:7,html:[9,7],document:[0,1,10,9,7],finish:7,screenshot:1,foregroundviewdepth:1,utf8:7,nest:7,driver:7,mani:[9,7],extern:7,appropri:[9,7],inconsist:7,markup:9,without:7,largescaleao:3,execut:7,excel:9,use_setuptool:7,rest:7,aspect:7,backgroundviewdepth:1,except:7,param:[1,3],vulner:7,earli:7,pso:3,read:7,swig:7,powerexpon:[1,3],dark:1,world:7,duallayerao:1,httpmessag:7,whitespac:7,either:7,output:[9,1,7,3],manag:7,fulfil:7,definit:[9,1],exit:7,refer:[9,7,3],ippolito:7,gztar:7,inspect:7,broken:7,found:[9,1,7],"throw":7,comparison:7,blur_radius_2:3,blur_radius_4:3,blur_radius_8:3,backgroundao:3,clamp:3,bom:7,effici:[0,1,6],console_script:7,interleav:1,strip:7,your:7,lod:1,area:1,aren:7,interfac:3,low:1,ipv6:7,regard:7,viewport:[1,3],longer:7,pull:7,possibl:[7,3],"default":[7,3],setinputdepth:3,deadlock:7,expect:7,taylor:7,scanner:7,creat:[9,7],certain:7,deep:1,strongli:1,decreas:1,file:[1,7,3],"_vcs_split_rev_from_url":7,proport:1,again:7,googl:7,prepend:7,tight:7,valid:7,writabl:7,you:[1,7],trash:1,brandl:9,docstr:9,track:7,jansen:1,reduc:[1,6,3],directori:7,mask:[7,3],potenti:3,represent:7,all:[1,7,3],dist:7,pth:7,lack:7,deprecationwarn:7,abil:7,follow:[9,1,7],disk:1,children:9,articl:7,program:7,unladen:7,introduc:7,straightforward:9,fals:[1,7],subcommand:7,failur:7,veri:[1,7],egg_info:7,list:7,adjust:1,stderr:7,sajip:7,superced:7,gfsdk_ssao_hardware_depths_sub_rang:3,dimens:[1,3],krekel:7,zero:[1,7,3],design:[1,7],pass:[1,7,3],further:7,what:1,sub:[1,7],depthstorag:3,section:[10,7],easy_inst:7,delet:[1,7],version:[7,3],indexsidebar:7,"public":7,full:[1,7,3],hash:7,trunk:7,modifi:7,valu:[1,7,3],search:[0,1,7],gfsdk_ssao_statu:1,ahead:7,view_depth:3,prior:7,doctest:7,via:[1,7],verifyinghttpsconn:7,reiniti:7,deprec:7,establish:7,gfsdk_ssao_createcontext_d3d11:1,regist:7,two:[7,3],taken:[1,7],minor:7,flat:7,supersampl:3,flag:7,broke:7,cach:[1,7],none:7,hour:1,dep:7,phillip:7,versionconflict:7,dev:7,remain:7,d3d12:[1,3],d3d11:[1,3],scan:7,share:7,accept:7,minimum:1,sharp:3,cours:7,newlin:7,secur:7,rather:7,anoth:[10,7],comfort:7,snippet:9,outputrtv:3,simpl:7,regener:7,resourc:7,referenc:7,associ:[1,7],pprojectionmatrix:1,github:7,roundtrip:7,caus:[1,7],nvidia:3,egg:[9,7],rotat:7,soon:7,through:7,paramet:3,style:7,archive_util:7,relev:3,late:7,might:7,alter:3,good:7,"return":7,sentenc:7,complain:7,httplib:7,easili:7,achiev:1,pfullresdepthtexture2ndlayersrv:1,additional_test:7,fulli:7,unicod:7,subsystem:7,inplac:7,weight:[1,3],dylib:7,idea:7,connect:7,event:7,safeti:7,print:7,subsubsect:10,foreground:3,remvov:7,proxi:7,uncommit:7,base:1,put:7,bash:7,launch:7,omit:7,feed:1,package_index:7,number:[1,7],done:7,blank:7,miss:7,build_ext:7,nearao:1,differ:[1,7],projectnam:7,construct:7,natur:7,sainz:1,gpu:[1,3],shadowwork:0,option:[1,7,3],part:7,pars:[9,7],consult:7,hashlib:7,remov:[1,7,6,3],reus:7,toward:1,comput:7,"null":3,distributionnotfound:7,foregroundao:3,built:7,lib2to3:7,florian:7,self:7,also:[1,7],build:7,exec:7,previou:[0,6,7,3],most:7,plai:7,plan:[9,7],compar:[0,6,7],finalao:1,clean:7,blend:[1,3],microsoft:7,wsgi:7,flicker:1,entry_point:7,fine:7,find:7,impact:1,firewal:7,test_develop:7,writer:7,solut:7,darwin:7,nativ:7,certif:7,set:[1,7],"_full_nam":7,see:[7,3],arg:7,float4:3,close:7,arm:7,guinea:7,won:7,altern:7,gfsdk_ssao_row_major_ord:1,web:7,gethead:7,coarseao:3,solv:7,both:7,last:7,hbao:3,alon:7,eager_resourc:7,roman:7,package_data:7,context:1,pdf:9,whole:1,load:7,simpli:[1,7],point:[1,7,3],arbitrarili:1,header:[1,7],linux:7,pycon:7,becom:7,due:7,empti:7,sinc:7,gfsdk_ssao_blur_radius_2:3,gfsdk_ssao_hardware_depth:1,chandler:7,gfsdk_ssao_blur_radius_4:1,strategi:1,setopt:7,execfil:7,imag:1,coordin:[1,7],educ:7,makedir:7,customheap:1,look:[1,7,3],"while":7,osaf:7,unifi:7,behavior:7,error:[7,3],loop:7,subsect:10,readm:7,itself:7,around:[0,6,7],minim:1,decod:7,conflict:7,higher:7,pylaunch:7,optim:3,temporari:7,user:[7,3],robust:7,implement:7,recent:7,lower:7,machineri:7,older:7,find_packag:7,entri:[1,7,3],pickl:7,elev:7,propos:7,renderao:[1,3],bilater:1,obscur:1,"__path__":7,password:7,restructuredtext:9,input:3,approxim:1,finder:7,bin:7,format:[9,7],file_find:7,game:1,bit:7,httpexcept:7,docutil:9,resolv:7,manifest:7,api:[7,3],often:7,creation:7,some:7,back:7,virtualenv:7,scale:1,pep:7,per:[1,7,3],larg:1,slash:7,nose:7,smallscaleao:3,run:[7,3],python_egg_cach:7,dependency_link:7,namespace_packag:7,block:7,repair:7,emphasi:7,pythonpath:7,within:7,ensur:7,inclus:9,question:7,"long":7,custom:7,includ:9,suit:[9,7],forward:7,properli:7,gfsdk_ssao_float4x4:1,translat:[9,7],newer:7,line:7,info:[1,7],utf:7,consist:[9,7],coomb:7,highlight:9,similar:[9,1],parser:7,doesn:7,zip_ok:7,curl:7,saveopt:7,gfsdk_ssao_draw_debug_n:3,objection:1,invalid:7,codec:7,librari:[1,7],distribute_disable_versioned_easy_install_script:7,draw:1,gfsdk_ssao_customheap:1,svn:7,algorithm:[1,7],rst2pdf:9,depth:[1,6,3],fresh:7,scroll:7,code:[9,7,3],partial:[7,3],edg:1,package_dir:7,cython:7,privat:7,elsewher:7,fatal:7,unzip:7,distribute_setup:7,runnabl:7,py2app:7,"try":7,race:7,pleas:7,badstatuslin:7,cfg:7,fullnam:[4,5,8],compat:7,index:[9,7],test_load:7,experiment:7,vinai:7,let:[7,3],parsed_vers:7,implicit:7,convert:[1,7],no_fak:7,convers:7,holger:7,getfilesystemencod:7,larger:[1,7,3],technolog:7,shader:1,distribute_setup_3k:7,typic:1,honor:7,chanc:7,install_egg_info:7,appli:[1,7],app:[1,7],foundat:7,"boolean":7,redo:7,fed:1,from:[9,1,3],zip:7,commun:7,toshio:7,camera:1,usr:7,panel:7,sort:7,"__stdout__":7,account:7,retriev:7,scalabl:1,tunnel:7,alia:7,run_setup:7,fetch:7,test_easy_instal:7,control:[1,7,3],malform:7,process:[1,7],sdist:7,sudo:7,high:1,tag:7,tarbal:7,georg:9,sig:7,dissolv:1,instead:[1,7,3],overridden:7,redund:7,alloc:1,drop:7,light:[0,1,6],mac_ver:7,issu:7,allow:7,fallback:7,blendstat:3,move:[7,3],meter:1,sysconfig:7,us_ascii:7,bunch:7,meterstoviewspaceunit:3,re_find:7,infrastructur:7,therefor:7,pixel:1,crash:[7,3],greater:1,python:9,overal:1,dai:1,auth:7,front:7,edit:7,resourcewarn:7,nameerror:7,mode:[1,7,3],pygment:9,intellig:9,our:1,patch:7,special:7,out:7,variabl:[1,7],suitabl:7,ssao:1,setinputdata:3,matric:3,insid:7,standalon:7,releas:3,philip:7,customblendst:3,unwant:7,could:7,opengl:[6,3],unpack_arch:7,keep:7,length:7,outsid:7,paocontext:1,geometri:1,retain:7,suffix:7,qualiti:[1,3],scene:1,date:7,lib:[1,7,3],facil:9,stencil:3,unknown:7,mkdir:7,messag:7,attach:7,termin:7,"final":1,prone:3,shell:7,accompani:7,rst:7,prune:7,unpack_directori:7,richer:[0,6],structur:[9,7],charact:[1,7],result:7,py2:7,py3:7,corrupt:7,have:[1,7],need:[1,7],turn:7,border:1,"switch":7,builtin:7,which:[1,7],singl:[1,7,3],textur:[1,6,3],unless:7,deploy:7,whl:7,pyo:7,pyc:7,"class":[9,7,3],epub:9,url:7,request:7,filelist:7,snapshot:7,determin:7,schulz:7,text:[9,2],syntaxerror:7,anywai:7,locat:7,nois:1,should:[1,2,7],local:7,devnul:7,pypa:7,contribut:[1,7],pypi:7,bear:7,autom:7,"2009q3":7,increas:1,tests_requir:7,enabl:[1,7],fixer:7,contain:7,view:[0,1],legaci:7,ebi:7,particl:1,closer:1,statu:1,invalid_mark:7,correctli:[1,7],pattern:7,dll:[1,7,3],written:[9,1,7],progress:7,tent:7,kei:7,parseabl:7,overhaul:7,disallow:7,plugin:7,etc:7,gfsdk_ssao_getvers:3,swallow:7,comment:7,invalid_viewport_dimens:3,gfsdk_ssao_per_sample_ao:3,respect:7,rpm:7,farao:1,extra_path:7,compon:3,treat:7,immedi:7,pypirc:7,mike:7,internalviewnorm:3,presenc:7,assert:[1,7],present:7,multi:[1,7],plain:9,"__pycache__":7,defin:[1,7],glossari:9,site:7,dont_write_bytecod:7,substanti:7,fiddl:7,revis:7,parti:7,cross:[9,1,7],handl:[9,7],impimport:7,ball:1,http:7,py3k:7,upon:[0,6],distutil:7,expand:7,off:1,center:1,well:[9,7],exampl:7,command:7,sibl:9,latest:7,less:[1,7,3],pythonw:7,eggsecut:7,jinja:9,script:7,add:[0,1,7,6,3],setuptools_disable_versioned_easy_install_script:7,exempt:7,match:[1,7],jython:7,piec:9,gbuffer:1,know:7,bukowski:1,recurs:7,python3:7,python2:7,like:1,success:7,api_test:7,page:[0,1,9,7],setupt:7,bdist_rpm:7,revers:7,thiem:7,suppli:7,home:[0,7],mainli:7,win32:1,trust:7,buildout:7,lead:7,avoid:[1,7],sandboxviol:7,leav:7,command_consumes_argu:7,trap:7,importerror:7,win64:1,usag:7,symlink:7,host:7,obei:7,although:7,simpler:1,actual:7,socket:7,disabl:[1,7,3],own:7,gfsdk_ssao_inputdata_d3d11:1,automat:[9,7],setinputnorm:3,merg:[7,3],"6c12":7,"6c11":7,transfer:3,jason:7,"function":[9,7,3],subdirectori:7,keyerror:7,spuriou:7,eas:7,highest:7,bug:[7,3],count:1,pnormaldata:3,made:7,getpreferredencod:7,whether:7,resourcemanag:7,displai:7,otherwis:7,problem:7,createabl:7,pim:7,packageindex:7,dure:7,filenam:7,pig:7,pip:7,precreaterendertarget:3,probabl:7,"2to3":7,detail:[0,1,6,7],virtual:7,other:[9,1,7],lookup:7,futur:7,branch:7,py2ex:7,semin:7,tessel:1,sphinx:[9,7],fund:7,space:1,open_with_auth:7},objtypes:{},objnames:{},filenames:["index","product","sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/only","changelog","sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/class","sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/module","releasenotes","sphinx/python-2.7.5/Lib/site-packages/setuptools-2.1.dist-info/DESCRIPTION","sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/base","sphinx/python-2.7.5/Lib/site-packages/Sphinx-1.2.dist-info/DESCRIPTION","sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/contents"],titles:["NVIDIA HBAO+","NVIDIA HBAO+ 4.0.","1. Sections in only directives","Change Log","<no title>","<no title>","Release Notes","Installing and Using Setuptools","<no title>","<no title>","test-only-directive"],objects:{},titleterms:{"5a9":7,"5a8":7,"5a1":7,"5a5":7,"5a4":7,radiu:1,"5a6":7,"3a2":7,"3a1":7,"6a10":7,"6a11":7,paramet:1,onli:[10,2],"6c1":7,window:7,"6c3":7,"6c4":7,"6c5":7,"6c6":7,"6c7":7,input:1,expon:1,get:1,python:7,bia:1,"5a7":7,background:1,"new":6,requir:1,"7b4":7,"6a1":7,level:2,unix:7,integr:1,titl:[4,5,8,9],direct:[10,2],msaa:1,sampl:1,download:7,what:6,section:2,content:7,"6a8":7,estim:1,blur:1,"6a2":7,"6a3":7,subsubsect:2,"6a5":7,foreground:1,power:1,advanc:7,base:7,"5a11":7,"6c2":7,"5a12":7,releas:6,addit:1,about:0,occlus:1,hbao:[0,1],credit:7,chang:[7,3],"4a2":7,meterstoviewspaceunit:1,overview:1,easy_instal:7,system:7,instruct:7,instal:7,from:7,log:3,support:[1,7],upgrad:7,start:1,includ:[2,7],more:0,head:2,setuptool:7,link:1,uninstal:7,pkg_resourc:7,learn:0,easyinstal:7,subsect:2,layer:1,"6c9":7,packag:1,dual:1,tabl:7,sharp:1,incompat:7,anoth:2,note:6,"6b4":7,test:10,document:2,pipelin:1,distribut:7,time:1,mac:7,data:1,bootstrap:7,flow:1,"6b3":7,"6b1":7,"6a9":7,nvidia:[0,1],backward:7}})
\ No newline at end of file diff --git a/doc/sphinx/python-2.7.5/Lib/site-packages/Sphinx-1.2.dist-info/DESCRIPTION.html b/doc/sphinx/python-2.7.5/Lib/site-packages/Sphinx-1.2.dist-info/DESCRIPTION.html index 44bfae5..4380269 100644 --- a/doc/sphinx/python-2.7.5/Lib/site-packages/Sphinx-1.2.dist-info/DESCRIPTION.html +++ b/doc/sphinx/python-2.7.5/Lib/site-packages/Sphinx-1.2.dist-info/DESCRIPTION.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title><no title> — NVIDIA HBAO+ 3.1. documentation</title> + <title><no title> — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="../../../../../_static/default.css" type="text/css" /> <link rel="stylesheet" href="../../../../../_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../../../../', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,7 +29,7 @@ <script type="text/javascript" src="../../../../../_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../../../../_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="../../../../../index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="../../../../../index.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -42,7 +42,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -52,7 +52,7 @@ <h3><a href="../../../../../index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="../../../../../product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="../../../../../product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="../../../../../product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../product.html#getting-started">Getting Started</a></li> @@ -72,6 +72,7 @@ <li class="toctree-l3"><a class="reference internal" href="../../../../../product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="../../../../../product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="../../../../../product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -142,7 +143,7 @@ and inclusion of appropriately formatted docstrings</li> <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/sphinx/python-2.7.5/Lib/site-packages/setuptools-2.1.dist-info/DESCRIPTION.html b/doc/sphinx/python-2.7.5/Lib/site-packages/setuptools-2.1.dist-info/DESCRIPTION.html index 47e22ad..a974fe0 100644 --- a/doc/sphinx/python-2.7.5/Lib/site-packages/setuptools-2.1.dist-info/DESCRIPTION.html +++ b/doc/sphinx/python-2.7.5/Lib/site-packages/setuptools-2.1.dist-info/DESCRIPTION.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title>Installing and Using Setuptools — NVIDIA HBAO+ 3.1. documentation</title> + <title>Installing and Using Setuptools — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="../../../../../_static/default.css" type="text/css" /> <link rel="stylesheet" href="../../../../../_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../../../../', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,7 +29,7 @@ <script type="text/javascript" src="../../../../../_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../../../../_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="../../../../../index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="../../../../../index.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -42,7 +42,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -52,7 +52,7 @@ <h3><a href="../../../../../index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="../../../../../product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="../../../../../product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="../../../../../product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../product.html#getting-started">Getting Started</a></li> @@ -72,6 +72,7 @@ <li class="toctree-l3"><a class="reference internal" href="../../../../../product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="../../../../../product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="../../../../../product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -1923,7 +1924,7 @@ value. Run <tt class="docutils literal"><span class="pre">setup.py</span> <span <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/base.html b/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/base.html index dae53a0..0a6d4c2 100644 --- a/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/base.html +++ b/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/base.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title><no title> — NVIDIA HBAO+ 3.1. documentation</title> + <title><no title> — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="../../../../../../../../../_static/default.css" type="text/css" /> <link rel="stylesheet" href="../../../../../../../../../_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../../../../../../../../', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,7 +29,7 @@ <script type="text/javascript" src="../../../../../../../../../_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../../../../../../../../_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="../../../../../../../../../index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="../../../../../../../../../index.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -42,7 +42,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -52,7 +52,7 @@ <h3><a href="../../../../../../../../../index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="../../../../../../../../../product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="../../../../../../../../../product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#getting-started">Getting Started</a></li> @@ -72,6 +72,7 @@ <li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -118,7 +119,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/class.html b/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/class.html index dae53a0..0a6d4c2 100644 --- a/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/class.html +++ b/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/class.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title><no title> — NVIDIA HBAO+ 3.1. documentation</title> + <title><no title> — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="../../../../../../../../../_static/default.css" type="text/css" /> <link rel="stylesheet" href="../../../../../../../../../_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../../../../../../../../', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,7 +29,7 @@ <script type="text/javascript" src="../../../../../../../../../_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../../../../../../../../_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="../../../../../../../../../index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="../../../../../../../../../index.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -42,7 +42,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -52,7 +52,7 @@ <h3><a href="../../../../../../../../../index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="../../../../../../../../../product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="../../../../../../../../../product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#getting-started">Getting Started</a></li> @@ -72,6 +72,7 @@ <li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -118,7 +119,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/module.html b/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/module.html index dae53a0..0a6d4c2 100644 --- a/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/module.html +++ b/doc/sphinx/python-2.7.5/Lib/site-packages/sphinx/ext/autosummary/templates/autosummary/module.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title><no title> — NVIDIA HBAO+ 3.1. documentation</title> + <title><no title> — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="../../../../../../../../../_static/default.css" type="text/css" /> <link rel="stylesheet" href="../../../../../../../../../_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../../../../../../../../', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,7 +29,7 @@ <script type="text/javascript" src="../../../../../../../../../_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../../../../../../../../_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="../../../../../../../../../index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="../../../../../../../../../index.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -42,7 +42,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -52,7 +52,7 @@ <h3><a href="../../../../../../../../../index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="../../../../../../../../../product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="../../../../../../../../../product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#getting-started">Getting Started</a></li> @@ -72,6 +72,7 @@ <li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="../../../../../../../../../product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../../../product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -118,7 +119,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/contents.html b/doc/sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/contents.html index 70ac232..480c6bf 100644 --- a/doc/sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/contents.html +++ b/doc/sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/contents.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title>test-only-directive — NVIDIA HBAO+ 3.1. documentation</title> + <title>test-only-directive — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="../../../../../../../_static/default.css" type="text/css" /> <link rel="stylesheet" href="../../../../../../../_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../../../../../../', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,7 +29,7 @@ <script type="text/javascript" src="../../../../../../../_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../../../../../../_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="../../../../../../../index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="../../../../../../../index.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -42,7 +42,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -52,7 +52,7 @@ <h3><a href="../../../../../../../index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="../../../../../../../product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="../../../../../../../product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../product.html#getting-started">Getting Started</a></li> @@ -72,6 +72,7 @@ <li class="toctree-l3"><a class="reference internal" href="../../../../../../../product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../../../product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../../../product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="../../../../../../../product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -190,7 +191,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> diff --git a/doc/sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/only.html b/doc/sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/only.html index 08b0749..6ad2549 100644 --- a/doc/sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/only.html +++ b/doc/sphinx/python-2.7.5/Lib/site-packages/tests/roots/test-only-directive/only.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=Edge"/> - <title>1. Sections in only directives — NVIDIA HBAO+ 3.1. documentation</title> + <title>1. Sections in only directives — NVIDIA HBAO+ 4.0. documentation</title> <link rel="stylesheet" href="../../../../../../../_static/default.css" type="text/css" /> <link rel="stylesheet" href="../../../../../../../_static/pygments.css" type="text/css" /> @@ -18,7 +18,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../../../../../../', - VERSION: '3.1.', + VERSION: '4.0.', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true @@ -29,7 +29,7 @@ <script type="text/javascript" src="../../../../../../../_static/doctools.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../../../../../../_static/bootstrap.js"></script> - <link rel="top" title="NVIDIA HBAO+ 3.1. documentation" href="../../../../../../../index.html" /> + <link rel="top" title="NVIDIA HBAO+ 4.0. documentation" href="../../../../../../../index.html" /> </head> <body> <nav class="navbar navbar-inverse navbar-default"> @@ -42,7 +42,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> @@ -52,7 +52,7 @@ <h3><a href="../../../../../../../index.html">Table Of Contents</a></h3> <div id="sidebar_toc"> <ul> -<li class="toctree-l1"><a class="reference internal" href="../../../../../../../product.html">NVIDIA HBAO+ 3.1.</a><ul> +<li class="toctree-l1"><a class="reference internal" href="../../../../../../../product.html">NVIDIA HBAO+ 4.0.</a><ul> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../product.html#overview">Overview</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../product.html#package">Package</a></li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../product.html#getting-started">Getting Started</a></li> @@ -72,6 +72,7 @@ <li class="toctree-l3"><a class="reference internal" href="../../../../../../../product.html#background-ao">Background AO</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../../../product.html#ao-blur">AO Blur</a></li> <li class="toctree-l3"><a class="reference internal" href="../../../../../../../product.html#blur-sharpness">Blur Sharpness</a></li> +<li class="toctree-l3"><a class="reference internal" href="../../../../../../../product.html#dual-layer">Dual Layer</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="../../../../../../../product.html#integration-time-estimates">Integration Time Estimates</a></li> @@ -258,7 +259,7 @@ <div class="masthead"> <div class="row"> <ul class="breadcrumb"> - <li><a href="../../../../../../../index.html">NVIDIA HBAO+ 3.1. documentation</a></li> + <li><a href="../../../../../../../index.html">NVIDIA HBAO+ 4.0. documentation</a></li> </ul> </div> </div> |