2019-01-04 10:30:40 +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.
|
|
|
|
|
|
|
|
#ifndef DAWNNATIVE_ADAPTER_H_
|
|
|
|
#define DAWNNATIVE_ADAPTER_H_
|
|
|
|
|
|
|
|
#include "dawn_native/DawnNative.h"
|
|
|
|
|
|
|
|
#include "dawn_native/Error.h"
|
2019-08-02 00:06:38 +00:00
|
|
|
#include "dawn_native/Extensions.h"
|
2020-01-10 13:28:18 +00:00
|
|
|
#include "dawn_native/dawn_platform.h"
|
|
|
|
|
|
|
|
#include <string>
|
2019-01-04 10:30:40 +00:00
|
|
|
|
|
|
|
namespace dawn_native {
|
|
|
|
|
|
|
|
class DeviceBase;
|
|
|
|
|
|
|
|
class AdapterBase {
|
|
|
|
public:
|
2020-01-10 13:28:18 +00:00
|
|
|
AdapterBase(InstanceBase* instance, wgpu::BackendType backend);
|
2019-01-04 10:30:40 +00:00
|
|
|
virtual ~AdapterBase() = default;
|
|
|
|
|
2020-01-10 13:28:18 +00:00
|
|
|
wgpu::BackendType GetBackendType() const;
|
|
|
|
wgpu::AdapterType GetAdapterType() const;
|
2020-10-14 13:33:15 +00:00
|
|
|
const std::string& GetDriverDescription() const;
|
2019-01-04 10:30:40 +00:00
|
|
|
const PCIInfo& GetPCIInfo() const;
|
|
|
|
InstanceBase* GetInstance() const;
|
|
|
|
|
2019-04-26 07:52:57 +00:00
|
|
|
DeviceBase* CreateDevice(const DeviceDescriptor* descriptor = nullptr);
|
2019-01-04 10:30:40 +00:00
|
|
|
|
2021-02-24 22:09:30 +00:00
|
|
|
void ResetInternalDeviceForTesting();
|
|
|
|
|
2019-08-02 00:06:38 +00:00
|
|
|
ExtensionsSet GetSupportedExtensions() const;
|
|
|
|
bool SupportsAllRequestedExtensions(
|
|
|
|
const std::vector<const char*>& requestedExtensions) const;
|
2019-11-13 01:53:25 +00:00
|
|
|
WGPUDeviceProperties GetAdapterProperties() const;
|
2019-08-02 00:06:38 +00:00
|
|
|
|
2019-01-10 10:50:54 +00:00
|
|
|
protected:
|
|
|
|
PCIInfo mPCIInfo = {};
|
2020-01-10 13:28:18 +00:00
|
|
|
wgpu::AdapterType mAdapterType = wgpu::AdapterType::Unknown;
|
2020-10-14 13:33:15 +00:00
|
|
|
std::string mDriverDescription;
|
2019-08-02 00:06:38 +00:00
|
|
|
ExtensionsSet mSupportedExtensions;
|
2019-01-10 10:50:54 +00:00
|
|
|
|
2019-01-04 10:30:40 +00:00
|
|
|
private:
|
2019-04-26 07:52:57 +00:00
|
|
|
virtual ResultOrError<DeviceBase*> CreateDeviceImpl(const DeviceDescriptor* descriptor) = 0;
|
2019-01-04 10:30:40 +00:00
|
|
|
|
2019-04-26 07:52:57 +00:00
|
|
|
MaybeError CreateDeviceInternal(DeviceBase** result, const DeviceDescriptor* descriptor);
|
2019-01-04 10:30:40 +00:00
|
|
|
|
2021-02-24 22:09:30 +00:00
|
|
|
virtual MaybeError ResetInternalDeviceForTestingImpl();
|
2019-01-04 10:30:40 +00:00
|
|
|
InstanceBase* mInstance = nullptr;
|
2020-01-10 13:28:18 +00:00
|
|
|
wgpu::BackendType mBackend;
|
2019-01-04 10:30:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dawn_native
|
|
|
|
|
|
|
|
#endif // DAWNNATIVE_ADAPTER_H_
|