Skip to content

Commit

Permalink
Initial XeSS 1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
xess-intel committed Sep 27, 2022
0 parents commit 0d32d34
Show file tree
Hide file tree
Showing 1,505 changed files with 410,204 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Release 1.0
- Initial public release
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# XeSS SDK

Intel(R) Xe Super Sampling (XeSS) enables an innovative framerate boosting technology supported by Intel(R) Arc(TM) graphics cards and other GPU vendors.
Using AI deep-learning to perform upscaling, XeSS offers higher framerates without degrading the image.

Please see the Developer Guide in the /doc folder for getting started information and https://www.intel.com/content/www/us/en/products/docs/arc-discrete-graphics/xess.html for more information.

# Package contents

| Folder / file | Description |
| ----------- | ----------- |
| README.md | This readme file |
| ChangeLog.md | List of changes |
| bin | DLLs, executables, configurations and kernels required to run |
| inc | Required header files |
| lib | Static libraries |
| doc | Documentation |
| licenses | Licenses for the SDK itself and its components |
| samples | Source code and license for samples |
Binary file added bin/BasicSample.exe
Binary file not shown.
Binary file added bin/DroidSans.ttf
Binary file not shown.
Binary file added bin/InferenceTool.exe
Binary file not shown.
Binary file added bin/XeFX.dll
Binary file not shown.
Binary file added bin/XeFX_Loader.dll
Binary file not shown.
Binary file added bin/XeSSDemo.exe
Binary file not shown.
Binary file added bin/dxcompiler.dll
Binary file not shown.
Binary file added bin/dxil.dll
Binary file not shown.
Binary file added bin/igxess.dll
Binary file not shown.
Binary file added bin/libxess.dll
Binary file not shown.
97 changes: 97 additions & 0 deletions bin/shaders.hlsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
//*********************************************************
//
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the MIT License (MIT).
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
//
//*********************************************************

cbuffer SceneConstantBuffer : register(b0)
{
float4 offset;
float4 velocity;
float4 resolution;
float4 padding[13];
};

struct PSInput
{
float4 position : SV_POSITION;
float4 color : COLOR;
};

struct PSOutputColor
{
float4 Color: SV_Target0;
};

PSInput VSMainColor(float4 position : POSITION, float4 color : COLOR)
{
PSInput result;

result.position = float4(position.xyz, 1.);
result.position.xy += offset.xy + 2. * (offset.zw / resolution.xy);
result.color = color;

return result;
}

PSOutputColor PSMainColor(PSInput input) : SV_TARGET
{
PSOutputColor output;
output.Color = input.color;

return output;
}

PSInput VSMainVelocity(float4 position : POSITION, float4 color : COLOR)
{
PSInput result;

result.position = position;
result.position.xy += offset.xy + 2. * (offset.zw / resolution.xy );
result.color = color;

return result;
}

struct PSOutputVelocity
{
float2 Velocity: SV_Target0;
};

PSOutputVelocity PSMainVelocity(PSInput input) : SV_TARGET
{
PSOutputVelocity output;
output.Velocity = velocity.xy;

return output;
}

struct PSInputFSQ
{
float4 position: SV_POSITION;
float2 texcoord: TEXCOORD;
};

Texture2D input_color: register(t0);
SamplerState samp: register(s0);

PSInputFSQ VSMainFSQ(uint vertex_id: SV_VERTEXID)
{
PSInputFSQ output;
output.texcoord = float2(vertex_id & 2, (vertex_id << 1) & 2);
output.position = float4(output.texcoord * 2.0 - 1.0, 0.0, 1.0);
output.texcoord.y = 1.0f - output.texcoord.y;

return output;
}

float4 PSMainFSQ(PSInputFSQ input) : SV_TARGET
{
return input_color.Sample(samp, input.texcoord);
}

Binary file added doc/XeSS Developer Guide English.pdf
Binary file not shown.
Binary file added doc/XeSS Localization Strings.zip
Binary file not shown.
99 changes: 99 additions & 0 deletions doc/doxygen/_r_e_a_d_m_e_8md.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
<meta name="generator" content="Doxygen 1.9.3"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>XeSS SDK API Reference Guide: README.md File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="intel-logo.jpg"/></td>
<td id="projectalign">
<div id="projectname">XeSS SDK API Reference Guide<span id="projectnumber">&#160;1.0.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.3 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(document).ready(function(){initNavTree('_r_e_a_d_m_e_8md.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>

<div class="header">
<div class="headertitle"><div class="title">README.md File Reference</div></div>
</div><!--header-->
<div class="contents">
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="_r_e_a_d_m_e_8md.html">README.md</a></li>
<li class="footer">Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3 </li>
</ul>
</div>
</body>
</html>
111 changes: 111 additions & 0 deletions doc/doxygen/annotated.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
<meta name="generator" content="Doxygen 1.9.3"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>XeSS SDK API Reference Guide: Data Structures</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="intel-logo.jpg"/></td>
<td id="projectalign">
<div id="projectname">XeSS SDK API Reference Guide<span id="projectnumber">&#160;1.0.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.3 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(document).ready(function(){initNavTree('annotated.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>

<div class="header">
<div class="headertitle"><div class="title">Data Structures</div></div>
</div><!--header-->
<div class="contents">
<div class="textblock">Here are the data structures with brief descriptions:</div><div class="directory">
<table class="directory">
<tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct__xess__2d__t.html" target="_self">_xess_2d_t</a></td><td class="desc">2D variable </td></tr>
<tr id="row_1_"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct__xess__d3d12__execute__params__t.html" target="_self">_xess_d3d12_execute_params_t</a></td><td class="desc">Execution parameters for X<sup>e</sup>SS D3D12 </td></tr>
<tr id="row_2_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct__xess__d3d12__init__params__t.html" target="_self">_xess_d3d12_init_params_t</a></td><td class="desc">Initialization parameters for X<sup>e</sup>SS D3D12 </td></tr>
<tr id="row_3_"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct__xess__dump__parameters__t.html" target="_self">_xess_dump_parameters_t</a></td><td class="desc"></td></tr>
<tr id="row_4_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct__xess__profiled__frame__data__t.html" target="_self">_xess_profiled_frame_data_t</a></td><td class="desc"></td></tr>
<tr id="row_5_"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct__xess__profiling__data__t.html" target="_self">_xess_profiling_data_t</a></td><td class="desc"></td></tr>
<tr id="row_6_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct__xess__properties__t.html" target="_self">_xess_properties_t</a></td><td class="desc">Properties for internal X<sup>e</sup>SS resources </td></tr>
<tr id="row_7_"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct__xess__resources__to__dump__t.html" target="_self">_xess_resources_to_dump_t</a></td><td class="desc"></td></tr>
<tr id="row_8_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct__xess__version__t.html" target="_self">_xess_version_t</a></td><td class="desc">X<sup>e</sup>SS version </td></tr>
</table>
</div><!-- directory -->
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3 </li>
</ul>
</div>
</body>
</html>
12 changes: 12 additions & 0 deletions doc/doxygen/annotated_dup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
var annotated_dup =
[
[ "_xess_2d_t", "struct__xess__2d__t.html", "struct__xess__2d__t" ],
[ "_xess_d3d12_execute_params_t", "struct__xess__d3d12__execute__params__t.html", "struct__xess__d3d12__execute__params__t" ],
[ "_xess_d3d12_init_params_t", "struct__xess__d3d12__init__params__t.html", "struct__xess__d3d12__init__params__t" ],
[ "_xess_dump_parameters_t", "struct__xess__dump__parameters__t.html", "struct__xess__dump__parameters__t" ],
[ "_xess_profiled_frame_data_t", "struct__xess__profiled__frame__data__t.html", "struct__xess__profiled__frame__data__t" ],
[ "_xess_profiling_data_t", "struct__xess__profiling__data__t.html", "struct__xess__profiling__data__t" ],
[ "_xess_properties_t", "struct__xess__properties__t.html", "struct__xess__properties__t" ],
[ "_xess_resources_to_dump_t", "struct__xess__resources__to__dump__t.html", "struct__xess__resources__to__dump__t" ],
[ "_xess_version_t", "struct__xess__version__t.html", "struct__xess__version__t" ]
];
Binary file added doc/doxygen/bc_s.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/doxygen/bdwn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 0d32d34

Please sign in to comment.