// // Copyright 2015 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // QueryGL.h: Defines the class interface for QueryGL. #ifndef LIBANGLE_RENDERER_GL_QUERYGL_H_ #define LIBANGLE_RENDERER_GL_QUERYGL_H_ #include <deque> #include "libANGLE/renderer/QueryImpl.h" namespace rx { class FunctionsGL; class StateManagerGL; class QueryGL : public QueryImpl { … }; class StandardQueryGL : public QueryGL { … }; class SyncProviderGL; class SyncQueryGL : public QueryGL { … }; } // namespace rx #endif // LIBANGLE_RENDERER_GL_QUERYGL_H_