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 
onDestroy(const gl::Context * context)14 void QueryImpl::onDestroy(const gl::Context *context) {}
15 
16 }  // namespace rx
17