Edit

kc3-lang/angle/src/libGLESv2/Query.h

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2014-05-27 16:10:46
    Hash : d7e7d735
    Message : Move the GL_APICALL and similar defines to the project level. BUG=angle:658 Change-Id: Ib4fa10bb89a6658efbc20d5a763d8ec9c3a5506f Reviewed-on: https://chromium-review.googlesource.com/201465 Tested-by: Geoff Lang <geofflang@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org>

  • src/libGLESv2/Query.h
  • //
    // Copyright (c) 2012 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.
    //
    
    // Query.h: Defines the gl::Query class
    
    #ifndef LIBGLESV2_QUERY_H_
    #define LIBGLESV2_QUERY_H_
    
    #include <GLES3/gl3.h>
    #include <GLES2/gl2.h>
    
    #include "common/angleutils.h"
    #include "common/RefCountObject.h"
    
    namespace rx
    {
    class Renderer;
    class QueryImpl;
    }
    
    namespace gl
    {
    
    class Query : public RefCountObject
    {
      public:
        Query(rx::Renderer *renderer, GLenum type, GLuint id);
        virtual ~Query();
    
        void begin();
        void end();
    
        GLuint getResult();
        GLboolean isResultAvailable();
    
        GLenum getType() const;
        bool isStarted() const;
    
      private:
        DISALLOW_COPY_AND_ASSIGN(Query);
    
        rx::QueryImpl *mQuery;
    };
    
    }
    
    #endif   // LIBGLESV2_QUERY_H_