Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 //
2 // Copyright (c) 2013 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 //
7 // Query11.h: Defines the rx::Query11 class which implements rx::QueryImpl.
9 #ifndef LIBGLESV2_RENDERER_QUERY11_H_
10 #define LIBGLESV2_RENDERER_QUERY11_H_
12 #include "libGLESv2/renderer/QueryImpl.h"
14 namespace rx
15 {
16 class Renderer11;
18 class Query11 : public QueryImpl
19 {
20 public:
21 Query11(rx::Renderer11 *renderer, GLenum type);
22 virtual ~Query11();
24 void begin();
25 void end();
26 GLuint getResult();
27 GLboolean isResultAvailable();
29 private:
30 DISALLOW_COPY_AND_ASSIGN(Query11);
32 GLboolean testQuery();
34 rx::Renderer11 *mRenderer;
35 ID3D11Query *mQuery;
36 };
38 }
40 #endif // LIBGLESV2_RENDERER_QUERY11_H_