2014-06-05 23:38:27 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
#ifndef WEBGL_VERTEX_ARRAY_FAKE_H_
|
|
|
|
#define WEBGL_VERTEX_ARRAY_FAKE_H_
|
2014-06-05 23:38:27 +00:00
|
|
|
|
|
|
|
#include "WebGLVertexArray.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class WebGLVertexArrayFake final
|
2014-06-05 23:38:27 +00:00
|
|
|
: public WebGLVertexArray
|
|
|
|
{
|
2015-05-20 23:58:36 +00:00
|
|
|
friend class WebGLVertexArray;
|
|
|
|
|
|
|
|
protected:
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void BindVertexArrayImpl() override;
|
2015-05-20 23:58:36 +00:00
|
|
|
virtual void DeleteImpl() override;
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void GenVertexArray() override {};
|
2015-05-20 23:58:36 +00:00
|
|
|
virtual bool IsVertexArrayImpl() override;
|
2014-06-05 23:38:27 +00:00
|
|
|
|
|
|
|
private:
|
2015-05-20 23:58:36 +00:00
|
|
|
explicit WebGLVertexArrayFake(WebGLContext* webgl);
|
2014-06-05 23:38:27 +00:00
|
|
|
|
|
|
|
~WebGLVertexArrayFake() {
|
|
|
|
DeleteOnce();
|
|
|
|
}
|
|
|
|
|
2015-05-20 23:58:36 +00:00
|
|
|
bool mIsVAO;
|
2014-06-05 23:38:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
#endif // WEBGL_VERTEX_ARRAY_FAKE_H_
|