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/. */
|
|
|
|
|
|
|
|
#include "ObjectModel.h"
|
|
|
|
|
|
|
|
#include "Adapter.h"
|
|
|
|
#include "Device.h"
|
2019-10-02 19:46:03 +03:00
|
|
|
#include "CommandEncoder.h"
|
2018-06-13 20:43:48 +03:00
|
|
|
#include "Instance.h"
|
2020-11-16 22:57:04 +03:00
|
|
|
#include "Texture.h"
|
2018-06-13 20:43:48 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace webgpu {
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
ChildOf<T>::ChildOf(T* const parent) : mParent(parent) {}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
ChildOf<T>::~ChildOf() = default;
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
nsIGlobalObject* ChildOf<T>::GetParentObject() const {
|
|
|
|
return mParent->GetParentObject();
|
|
|
|
}
|
|
|
|
|
2019-10-02 19:46:03 +03:00
|
|
|
void ObjectBase::GetLabel(nsAString& aValue) const { aValue = mLabel; }
|
|
|
|
void ObjectBase::SetLabel(const nsAString& aLabel) { mLabel = aLabel; }
|
|
|
|
|
2018-06-13 20:43:48 +03:00
|
|
|
template class ChildOf<Adapter>;
|
2019-10-02 19:46:03 +03:00
|
|
|
template class ChildOf<CommandEncoder>;
|
2018-06-13 20:43:48 +03:00
|
|
|
template class ChildOf<Device>;
|
|
|
|
template class ChildOf<Instance>;
|
2020-02-24 23:12:16 +03:00
|
|
|
template class ChildOf<Texture>;
|
2018-06-13 20:43:48 +03:00
|
|
|
|
|
|
|
} // namespace webgpu
|
|
|
|
} // namespace mozilla
|