gfx/angle/src/libGLESv2/Query.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 //
     2 // Copyright (c) 2012 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 // Query.h: Defines the gl::Query class
     9 #ifndef LIBGLESV2_QUERY_H_
    10 #define LIBGLESV2_QUERY_H_
    12 #define GL_APICALL
    13 #include <GLES2/gl2.h>
    15 #include "common/angleutils.h"
    16 #include "common/RefCountObject.h"
    18 namespace rx
    19 {
    20 class Renderer;
    21 class QueryImpl;
    22 }
    24 namespace gl
    25 {
    27 class Query : public RefCountObject
    28 {
    29   public:
    30     Query(rx::Renderer *renderer, GLenum type, GLuint id);
    31     virtual ~Query();
    33     void begin();
    34     void end();
    36     GLuint getResult();
    37     GLboolean isResultAvailable();
    39     GLenum getType() const;
    41   private:
    42     DISALLOW_COPY_AND_ASSIGN(Query);
    44     rx::QueryImpl *mQuery;
    45 };
    47 }
    49 #endif   // LIBGLESV2_QUERY_H_

mercurial