2022-02-04 17:07:46 +00:00
|
|
|
// Copyright 2018 The Dawn Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2022-04-11 18:30:50 +00:00
|
|
|
#ifndef INCLUDE_DAWN_NATIVE_D3D12BACKEND_H_
|
|
|
|
#define INCLUDE_DAWN_NATIVE_D3D12BACKEND_H_
|
2022-02-04 17:07:46 +00:00
|
|
|
|
|
|
|
#include <DXGI1_4.h>
|
|
|
|
#include <d3d12.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <wrl/client.h>
|
|
|
|
|
2023-04-03 21:33:54 +00:00
|
|
|
#include "dawn/native/D3DBackend.h"
|
2022-04-19 14:24:04 +00:00
|
|
|
|
2022-02-04 17:07:46 +00:00
|
|
|
struct ID3D12Device;
|
|
|
|
struct ID3D12Resource;
|
|
|
|
|
|
|
|
namespace dawn::native::d3d12 {
|
|
|
|
|
2022-07-13 11:33:51 +00:00
|
|
|
class Device;
|
2022-05-01 14:40:55 +00:00
|
|
|
|
|
|
|
enum MemorySegment {
|
|
|
|
Local,
|
|
|
|
NonLocal,
|
|
|
|
};
|
|
|
|
|
|
|
|
DAWN_NATIVE_EXPORT uint64_t SetExternalMemoryReservation(WGPUDevice device,
|
|
|
|
uint64_t requestedReservationSize,
|
|
|
|
MemorySegment memorySegment);
|
|
|
|
|
2023-05-25 02:42:27 +00:00
|
|
|
struct DAWN_NATIVE_EXPORT PhysicalDeviceDiscoveryOptions
|
|
|
|
: public d3d::PhysicalDeviceDiscoveryOptions {
|
|
|
|
PhysicalDeviceDiscoveryOptions();
|
|
|
|
explicit PhysicalDeviceDiscoveryOptions(Microsoft::WRL::ComPtr<IDXGIAdapter> adapter);
|
2022-05-01 14:40:55 +00:00
|
|
|
};
|
2022-02-04 17:07:46 +00:00
|
|
|
|
2023-05-25 02:42:27 +00:00
|
|
|
// TODO(dawn:1774): Deprecated.
|
|
|
|
using AdapterDiscoveryOptions = PhysicalDeviceDiscoveryOptions;
|
|
|
|
|
2022-02-04 17:07:46 +00:00
|
|
|
} // namespace dawn::native::d3d12
|
|
|
|
|
2022-04-11 18:30:50 +00:00
|
|
|
#endif // INCLUDE_DAWN_NATIVE_D3D12BACKEND_H_
|