tor-browser

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

QueryImpl.cpp (483B)


      1 //
      2 // Copyright 2018 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 // QueryImpl.cpp: Defines the abstract rx::QueryImpl classes.
      8 
      9 #include "libANGLE/renderer/QueryImpl.h"
     10 
     11 namespace rx
     12 {
     13 
     14 void QueryImpl::onDestroy(const gl::Context *context) {}
     15 
     16 angle::Result QueryImpl::onLabelUpdate(const gl::Context *context)
     17 {
     18    return angle::Result::Continue;
     19 }
     20 
     21 }  // namespace rx