Geoff Lang | f9a6f08 | 2015-01-22 13:32:49 -0500 | [diff] [blame^] | 1 | // |
| 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 | |
| 13 | namespace rx |
| 14 | { |
| 15 | |
| 16 | VertexArrayGL::VertexArrayGL() |
| 17 | : VertexArrayImpl() |
| 18 | {} |
| 19 | |
| 20 | VertexArrayGL::~VertexArrayGL() |
| 21 | {} |
| 22 | |
| 23 | void VertexArrayGL::setElementArrayBuffer(const gl::Buffer *buffer) |
| 24 | { |
| 25 | UNIMPLEMENTED(); |
| 26 | } |
| 27 | |
| 28 | void VertexArrayGL::setAttribute(size_t idx, const gl::VertexAttribute &attr) |
| 29 | { |
| 30 | UNIMPLEMENTED(); |
| 31 | } |
| 32 | |
| 33 | void VertexArrayGL::setAttributeDivisor(size_t idx, GLuint divisor) |
| 34 | { |
| 35 | UNIMPLEMENTED(); |
| 36 | } |
| 37 | |
| 38 | void VertexArrayGL::enableAttribute(size_t idx, bool enabledState) |
| 39 | { |
| 40 | UNIMPLEMENTED(); |
| 41 | } |
| 42 | |
| 43 | } |