2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2018-06-13 20:43:48 +03:00
|
|
|
/* 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/. */
|
|
|
|
|
2019-10-02 19:46:03 +03:00
|
|
|
#include "mozilla/dom/WebGPUBinding.h"
|
2018-06-13 20:43:48 +03:00
|
|
|
#include "Sampler.h"
|
2020-11-16 22:57:04 +03:00
|
|
|
#include "ipc/WebGPUChild.h"
|
2018-06-13 20:43:48 +03:00
|
|
|
|
|
|
|
#include "Device.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace webgpu {
|
|
|
|
|
2019-10-02 19:46:03 +03:00
|
|
|
GPU_IMPL_CYCLE_COLLECTION(Sampler, mParent)
|
|
|
|
GPU_IMPL_JS_WRAP(Sampler)
|
2018-06-13 20:43:48 +03:00
|
|
|
|
2020-02-24 23:12:16 +03:00
|
|
|
Sampler::Sampler(Device* const aParent, RawId aId)
|
|
|
|
: ChildOf(aParent), mId(aId) {}
|
|
|
|
|
|
|
|
Sampler::~Sampler() { Cleanup(); }
|
|
|
|
|
|
|
|
void Sampler::Cleanup() {
|
|
|
|
if (mValid && mParent) {
|
|
|
|
mValid = false;
|
2020-04-07 01:29:18 +03:00
|
|
|
auto bridge = mParent->GetBridge();
|
2020-02-24 23:12:16 +03:00
|
|
|
if (bridge && bridge->IsOpen()) {
|
2020-03-23 10:54:08 +03:00
|
|
|
bridge->SendSamplerDestroy(mId);
|
2020-02-24 23:12:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-22 10:31:51 +03:00
|
|
|
|
2018-06-13 20:43:48 +03:00
|
|
|
} // namespace webgpu
|
|
|
|
} // namespace mozilla
|