blob: a6a14b56df50e07c7fab5a715d01487504c07375 [file] [log] [blame]
Geoff Langf9a6f082015-01-22 13:32:49 -05001//
2// Copyright 2015 The ANGLE Project Authors. All rights reserved.
3// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6
7// VertexArrayGL.cpp: Implements the class methods for VertexArrayGL.
8
9#include "libANGLE/renderer/gl/VertexArrayGL.h"
10
11#include "common/debug.h"
12
13namespace rx
14{
15
16VertexArrayGL::VertexArrayGL()
17 : VertexArrayImpl()
18{}
19
20VertexArrayGL::~VertexArrayGL()
21{}
22
23void VertexArrayGL::setElementArrayBuffer(const gl::Buffer *buffer)
24{
25 UNIMPLEMENTED();
26}
27
28void VertexArrayGL::setAttribute(size_t idx, const gl::VertexAttribute &attr)
29{
30 UNIMPLEMENTED();
31}
32
33void VertexArrayGL::setAttributeDivisor(size_t idx, GLuint divisor)
34{
35 UNIMPLEMENTED();
36}
37
38void VertexArrayGL::enableAttribute(size_t idx, bool enabledState)
39{
40 UNIMPLEMENTED();
41}
42
43}