mirror of
https://github.com/optiscaler/OptiScaler.git
synced 2026-05-04 08:41:43 +00:00
36 lines
678 B
C++
36 lines
678 B
C++
#pragma once
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define NOMINMAX
|
|
#define WIN32_NO_STATUS
|
|
#define _SILENCE_ALL_MS_EXT_DEPRECATION_WARNINGS
|
|
|
|
#include <windows.h>
|
|
#include <d3d11_4.h>
|
|
#include <d3d12.h>
|
|
#include <d3dcompiler.h>
|
|
#include <DirectXMath.h>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <mutex>
|
|
#include <limits>
|
|
#include <string>
|
|
#include <cctype>
|
|
#include <algorithm>
|
|
#include <filesystem>
|
|
#include <stdexcept>
|
|
|
|
#include <vulkan/vulkan.hpp>
|
|
|
|
#define NV_WINDOWS
|
|
#define NVSDK_NGX
|
|
#define NGX_ENABLE_DEPRECATED_GET_PARAMETERS
|
|
#define NGX_ENABLE_DEPRECATED_SHUTDOWN
|
|
#include <nvsdk_ngx.h>
|
|
#include <nvsdk_ngx_vk.h>
|
|
|
|
#include <ankerl/unordered_dense.h>
|
|
#include <SimpleIni.h>
|
|
|
|
|