Edit

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

Branch :

  • Show log

    Commit

  • Author : Brandon Jones
    Date : 2014-08-08 10:54:25
    Hash : 3b579e36
    Message : Minor cleanup to Query constructor to normalize it with other interfaces Change-Id: I562245cf6323edc7a127480e8de6ac16c6f97c03 Reviewed-on: https://chromium-review.googlesource.com/211641 Tested-by: Brandon Jones <bajones@chromium.org> Reviewed-by: Shannon Woods <shannonwoods@chromium.org>

  • src/libGLESv2/Query.cpp
  • #include "precompiled.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.cpp: Implements the gl::Query class
    
    #include "libGLESv2/Query.h"
    #include "libGLESv2/renderer/QueryImpl.h"
    
    namespace gl
    {
    
    Query::Query(rx::QueryImpl *impl, GLuint id)
        : RefCountObject(id),
          mQuery(impl)
    {
    }
    
    Query::~Query()
    {
        delete mQuery;
    }
    
    void Query::begin()
    {
        mQuery->begin();
    }
    
    void Query::end()
    {
        mQuery->end();
    }
    
    GLuint Query::getResult()
    {
        return mQuery->getResult();
    }
    
    GLboolean Query::isResultAvailable()
    {
        return mQuery->isResultAvailable();
    }
    
    GLenum Query::getType() const
    {
        return mQuery->getType();
    }
    
    bool Query::isStarted() const
    {
        return mQuery->isStarted();
    }
    
    }