This commit is contained in:
Chuck Walbourn 2020-07-28 12:53:20 -07:00
Родитель f8a06f8c0f
Коммит 4a0612fb6a
8 изменённых файлов: 27 добавлений и 1 удалений

Просмотреть файл

@ -3,7 +3,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
#
# https://github.com/walbourn/dxcapsviewer
# https://go.microsoft.com/fwlink/?linkid=2136896
cmake_minimum_required (VERSION 3.11)

Просмотреть файл

@ -1,5 +1,9 @@
![DirectX Logo](https://github.com/microsoft/DxCapsViewer/wiki/Dx_Logo.gif)
# DirectX Capabilities Viewer
https://go.microsoft.com/fwlink/?linkid=2136896
Copyright (c) Microsoft Corporation. All rights reserved.
This developer utility was originally shipped in the DirectX SDK, and then in 2012 was moved to the Windows 8 SDK, Windows 8.1 SDK, and Windows 10 SDK. The tool is designed to allow developers to explore the Direct3D capabilities exposed by the hardware/software/drivers on their system.
@ -8,6 +12,10 @@ This developer utility was originally shipped in the DirectX SDK, and then in 20
This project is set up to use CMake with the Ninja generation via VS 2019's CMake integration. It is currently set up to require the Windows 10 SDK (19041) headers, but will run on Windows 7 SP1 or later.
# Documentation
Documentation is available on the [GitHub wiki](https://github.com/microsoft/DxCapsViewer/wiki).
## Notices
All content and source code for this package are subject to the terms of the [MIT License](http://opensource.org/licenses/MIT).

Просмотреть файл

@ -4,6 +4,9 @@
// Desc: DirectX Capabilities Viewer for DirectDraw
//
// Copyright (c) Microsoft Corporation. All Rights Reserved.
// Licensed under the MIT License.
//
// https://go.microsoft.com/fwlink/?linkid=2136896
//-----------------------------------------------------------------------------
#include "dxview.h"

Просмотреть файл

@ -4,6 +4,9 @@
// Desc: DirectX Capabilities Viewer for Direct3D
//
// Copyright (c) Microsoft Corporation. All Rights Reserved.
// Licensed under the MIT License.
//
// https://go.microsoft.com/fwlink/?linkid=2136896
//-----------------------------------------------------------------------------
#include "dxview.h"
#include <d3d9.h>

Просмотреть файл

@ -4,6 +4,9 @@
// Desc: DirectX Capabilities Viewer for DXGI (Direct3D 10.x / 11.x / 12.0)
//
// Copyright Microsoft Corporation. All Rights Reserved.
// Licensed under the MIT License.
//
// https://go.microsoft.com/fwlink/?linkid=2136896
//-----------------------------------------------------------------------------
#include "dxview.h"

Просмотреть файл

@ -4,6 +4,9 @@
// Desc: DirectX Capabilities Viewer Printing Support
//
// Copyright (c) Microsoft Corporation. All Rights Reserved.
// Licensed under the MIT License.
//
// https://go.microsoft.com/fwlink/?linkid=2136896
//-----------------------------------------------------------------------------
#include "dxview.h"

Просмотреть файл

@ -4,6 +4,9 @@
// Desc: DirectX Capabilities Viewer (Main program)
//
// Copyright (c) Microsoft Corporation. All Rights Reserved.
// Licensed under the MIT License.
//
// https://go.microsoft.com/fwlink/?linkid=2136896
//-----------------------------------------------------------------------------
#include "dxview.h"

Просмотреть файл

@ -4,6 +4,9 @@
// Desc: DirectX Capabilities Viewer Common Header
//
// Copyright (c) Microsoft Corporation. All Rights Reserved.
// Licensed under the MIT License.
//
// https://go.microsoft.com/fwlink/?linkid=2136896
//-----------------------------------------------------------------------------
#include <Windows.h>
#include <mmsystem.h>