Hash :
f9a6f084
Author :
Date :
2015-01-22T13:32:49
Add GL and WGL renderer stubs. BUG=angle:890 Change-Id: I64f2a72b4a350f95acc2ca7080fea1a308422ca4 Reviewed-on: https://chromium-review.googlesource.com/242573 Reviewed-by: Kenneth Russell <kbr@chromium.org> Reviewed-by: Brandon Jones <bajones@chromium.org> Tested-by: Geoff Lang <geofflang@chromium.org>
//
// 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 "libANGLE/renderer/QueryImpl.h"
namespace rx
{
class QueryGL : public QueryImpl
{
public:
QueryGL(GLenum type);
~QueryGL() override;
gl::Error begin() override;
gl::Error end() override;
gl::Error getResult(GLuint *params) override;
gl::Error isResultAvailable(GLuint *available) override;
private:
DISALLOW_COPY_AND_ASSIGN(QueryGL);
};
}
#endif // LIBANGLE_RENDERER_GL_QUERYGL_H_