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/. */
|
|
|
|
|
|
|
|
#include "WebGLVertexArrayGL.h"
|
|
|
|
|
|
|
|
#include "GLContext.h"
|
2014-11-14 04:03:50 +00:00
|
|
|
#include "WebGLContext.h"
|
2014-06-05 23:38:27 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLVertexArrayGL::DeleteImpl()
|
|
|
|
{
|
|
|
|
mElementArrayBuffer = nullptr;
|
|
|
|
|
|
|
|
mContext->MakeContextCurrent();
|
|
|
|
mContext->gl->fDeleteVertexArrays(1, &mGLName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLVertexArrayGL::BindVertexArrayImpl()
|
|
|
|
{
|
2014-06-11 00:23:50 +00:00
|
|
|
mContext->mBoundVertexArray = this;
|
|
|
|
|
2014-06-05 23:38:27 +00:00
|
|
|
mContext->gl->fBindVertexArray(mGLName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLVertexArrayGL::GenVertexArray()
|
|
|
|
{
|
|
|
|
mContext->gl->fGenVertexArrays(1, &mGLName);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|