tor-browser

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

NativeWindowD3D.cpp (536B)


      1 //
      2 // Copyright 2016 The ANGLE Project Authors. All rights reserved.
      3 // Use of this source code is governed by a BSD-style license that can be
      4 // found in the LICENSE file.
      5 //
      6 
      7 // NativeWindowD3D.cpp: Defines NativeWindowD3D, a class for managing and performing operations on
      8 // an EGLNativeWindowType for the D3D renderers.
      9 
     10 #include "libANGLE/renderer/d3d/NativeWindowD3D.h"
     11 
     12 namespace rx
     13 {
     14 
     15 NativeWindowD3D::NativeWindowD3D(EGLNativeWindowType window) : mWindow(window) {}
     16 
     17 NativeWindowD3D::~NativeWindowD3D() {}
     18 
     19 }  // namespace rx