mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-23 12:12:03 +00:00
Helps to avoid explicitly using reinterpret_cast Change-Id: I4df0e7094c7d8460385c6f23dac529ace9df9bdc Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/67605 Auto-Submit: Austin Eng <enga@chromium.org> Reviewed-by: Loko Kung <lokokung@google.com> Commit-Queue: Austin Eng <enga@chromium.org>
111 lines
3.5 KiB
C++
111 lines
3.5 KiB
C++
// Copyright 2020 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_SURFACE_H_
|
|
#define DAWNNATIVE_SURFACE_H_
|
|
|
|
#include "common/RefCounted.h"
|
|
#include "dawn_native/Error.h"
|
|
#include "dawn_native/Forward.h"
|
|
|
|
#include "dawn_native/dawn_platform.h"
|
|
|
|
#include "common/Platform.h"
|
|
|
|
#if defined(DAWN_PLATFORM_WINDOWS)
|
|
# include "dawn_native/d3d12/d3d12_platform.h"
|
|
#endif // defined(DAWN_PLATFORM_WINDOWS)
|
|
|
|
// Forward declare IUnknown
|
|
// GetCoreWindow needs to return an IUnknown pointer
|
|
// non-windows platforms don't have this type
|
|
struct IUnknown;
|
|
|
|
namespace dawn_native {
|
|
|
|
MaybeError ValidateSurfaceDescriptor(const InstanceBase* instance,
|
|
const SurfaceDescriptor* descriptor);
|
|
|
|
// A surface is a sum types of all the kind of windows Dawn supports. The OS-specific types
|
|
// aren't used because they would cause compilation errors on other OSes (or require
|
|
// ObjectiveC).
|
|
// The surface is also used to store the current swapchain so that we can detach it when it is
|
|
// replaced.
|
|
class Surface final : public RefCounted {
|
|
public:
|
|
Surface(InstanceBase* instance, const SurfaceDescriptor* descriptor);
|
|
|
|
void SetAttachedSwapChain(NewSwapChainBase* swapChain);
|
|
NewSwapChainBase* GetAttachedSwapChain();
|
|
|
|
// These are valid to call on all Surfaces.
|
|
enum class Type { MetalLayer, WindowsHWND, WindowsCoreWindow, WindowsSwapChainPanel, Xlib };
|
|
Type GetType() const;
|
|
InstanceBase* GetInstance();
|
|
|
|
// Valid to call if the type is MetalLayer
|
|
void* GetMetalLayer() const;
|
|
|
|
// Valid to call if the type is WindowsHWND
|
|
void* GetHInstance() const;
|
|
void* GetHWND() const;
|
|
|
|
// Valid to call if the type is WindowsCoreWindow
|
|
IUnknown* GetCoreWindow() const;
|
|
|
|
// Valid to call if the type is WindowsSwapChainPanel
|
|
IUnknown* GetSwapChainPanel() const;
|
|
|
|
// Valid to call if the type is WindowsXlib
|
|
void* GetXDisplay() const;
|
|
uint32_t GetXWindow() const;
|
|
|
|
private:
|
|
~Surface() override;
|
|
|
|
Ref<InstanceBase> mInstance;
|
|
Type mType;
|
|
|
|
// The swapchain will set this to null when it is destroyed.
|
|
Ref<NewSwapChainBase> mSwapChain;
|
|
|
|
// MetalLayer
|
|
void* mMetalLayer = nullptr;
|
|
|
|
// WindowsHwnd
|
|
void* mHInstance = nullptr;
|
|
void* mHWND = nullptr;
|
|
|
|
#if defined(DAWN_PLATFORM_WINDOWS)
|
|
// WindowsCoreWindow
|
|
ComPtr<IUnknown> mCoreWindow;
|
|
|
|
// WindowsSwapChainPanel
|
|
ComPtr<IUnknown> mSwapChainPanel;
|
|
#endif // defined(DAWN_PLATFORM_WINDOWS)
|
|
|
|
// Xlib
|
|
void* mXDisplay = nullptr;
|
|
uint32_t mXWindow = 0;
|
|
};
|
|
|
|
absl::FormatConvertResult<absl::FormatConversionCharSet::kString> AbslFormatConvert(
|
|
Surface::Type value,
|
|
const absl::FormatConversionSpec& spec,
|
|
absl::FormatSink* s);
|
|
|
|
} // namespace dawn_native
|
|
|
|
#endif // DAWNNATIVE_SURFACE_H_
|