tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

SupportedFeatures.cpp (1023B)


      1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* This Source Code Form is subject to the terms of the Mozilla Public
      3 * License, v. 2.0. If a copy of the MPL was not distributed with this
      4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      5 
      6 #include "SupportedFeatures.h"
      7 
      8 #include "Adapter.h"
      9 #include "mozilla/dom/BindingUtils.h"
     10 #include "mozilla/dom/WebGPUBinding.h"
     11 
     12 namespace mozilla::webgpu {
     13 
     14 GPU_IMPL_CYCLE_COLLECTION(SupportedFeatures, mParent)
     15 GPU_IMPL_JS_WRAP(SupportedFeatures)
     16 
     17 SupportedFeatures::SupportedFeatures(Adapter* const aParent)
     18    : ChildOf(aParent) {}
     19 
     20 SupportedFeatures::~SupportedFeatures() = default;
     21 
     22 void SupportedFeatures::Add(const dom::GPUFeatureName aFeature,
     23                            ErrorResult& aRv) {
     24  const auto u8 = dom::GetEnumString(aFeature);
     25  const auto u16 = NS_ConvertUTF8toUTF16(u8);
     26  dom::GPUSupportedFeatures_Binding::SetlikeHelpers::Add(this, u16, aRv);
     27 
     28  mFeatures.insert(aFeature);
     29 }
     30 
     31 }  // namespace mozilla::webgpu