mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-01 00:38:50 +02:00
An ExternalTexture is a texture that is created and owned by gecko, but shared with the webgpu implementation. It is used for webgpu presentation. While this name describes the class well, it is confusing due to webgpu having an entirely unrelated concept of GPUExternalTexture. This patch renames ExternalTexture, and all of its subclasses and uses, to SharedTexture. This still describes the purpose accurately, and has similarities to gl::SharedSurface which serves a similar purpose for our webgl implementation. Differential Revision: https://phabricator.services.mozilla.com/D255976
75 lines
2.6 KiB
C++
75 lines
2.6 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "SharedTexture.h"
|
|
|
|
#include "mozilla/webgpu/WebGPUParent.h"
|
|
|
|
#ifdef XP_WIN
|
|
# include "mozilla/webgpu/SharedTextureD3D11.h"
|
|
#endif
|
|
|
|
#if defined(XP_LINUX) && !defined(MOZ_WIDGET_ANDROID)
|
|
# include "mozilla/webgpu/SharedTextureDMABuf.h"
|
|
#endif
|
|
|
|
#ifdef XP_MACOSX
|
|
# include "mozilla/webgpu/SharedTextureMacIOSurface.h"
|
|
#endif
|
|
|
|
namespace mozilla::webgpu {
|
|
|
|
// static
|
|
UniquePtr<SharedTexture> SharedTexture::Create(
|
|
WebGPUParent* aParent, const ffi::WGPUDeviceId aDeviceId,
|
|
const uint32_t aWidth, const uint32_t aHeight,
|
|
const struct ffi::WGPUTextureFormat aFormat,
|
|
const ffi::WGPUTextureUsages aUsage) {
|
|
MOZ_ASSERT(aParent);
|
|
|
|
UniquePtr<SharedTexture> texture;
|
|
#ifdef XP_WIN
|
|
texture = SharedTextureD3D11::Create(aParent, aDeviceId, aWidth, aHeight,
|
|
aFormat, aUsage);
|
|
#elif defined(XP_LINUX) && !defined(MOZ_WIDGET_ANDROID)
|
|
texture = SharedTextureDMABuf::Create(aParent, aDeviceId, aWidth, aHeight,
|
|
aFormat, aUsage);
|
|
#elif defined(XP_MACOSX)
|
|
texture = SharedTextureMacIOSurface::Create(aParent, aDeviceId, aWidth,
|
|
aHeight, aFormat, aUsage);
|
|
#endif
|
|
return texture;
|
|
}
|
|
|
|
SharedTexture::SharedTexture(const uint32_t aWidth, const uint32_t aHeight,
|
|
const struct ffi::WGPUTextureFormat aFormat,
|
|
const ffi::WGPUTextureUsages aUsage)
|
|
: mWidth(aWidth), mHeight(aHeight), mFormat(aFormat), mUsage(aUsage) {}
|
|
|
|
SharedTexture::~SharedTexture() {}
|
|
|
|
void SharedTexture::SetSubmissionIndex(uint64_t aSubmissionIndex) {
|
|
MOZ_ASSERT(aSubmissionIndex != 0);
|
|
|
|
mSubmissionIndex = aSubmissionIndex;
|
|
}
|
|
|
|
UniquePtr<SharedTextureReadBackPresent> SharedTextureReadBackPresent::Create(
|
|
const uint32_t aWidth, const uint32_t aHeight,
|
|
const struct ffi::WGPUTextureFormat aFormat,
|
|
const ffi::WGPUTextureUsages aUsage) {
|
|
return MakeUnique<SharedTextureReadBackPresent>(aWidth, aHeight, aFormat,
|
|
aUsage);
|
|
}
|
|
|
|
SharedTextureReadBackPresent::SharedTextureReadBackPresent(
|
|
const uint32_t aWidth, const uint32_t aHeight,
|
|
const struct ffi::WGPUTextureFormat aFormat,
|
|
const ffi::WGPUTextureUsages aUsage)
|
|
: SharedTexture(aWidth, aHeight, aFormat, aUsage) {}
|
|
|
|
SharedTextureReadBackPresent::~SharedTextureReadBackPresent() {}
|
|
|
|
} // namespace mozilla::webgpu
|