diff options
Diffstat (limited to 'gfx/angle/src/libANGLE/renderer/VertexArrayImpl.h')
-rwxr-xr-x | gfx/angle/src/libANGLE/renderer/VertexArrayImpl.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gfx/angle/src/libANGLE/renderer/VertexArrayImpl.h b/gfx/angle/src/libANGLE/renderer/VertexArrayImpl.h new file mode 100755 index 000000000..b1be3691a --- /dev/null +++ b/gfx/angle/src/libANGLE/renderer/VertexArrayImpl.h @@ -0,0 +1,31 @@ +// +// Copyright 2014 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. +// + +// VertexAttribImpl.h: Defines the abstract rx::VertexAttribImpl class. + +#ifndef LIBANGLE_RENDERER_VERTEXARRAYIMPL_H_ +#define LIBANGLE_RENDERER_VERTEXARRAYIMPL_H_ + +#include "common/angleutils.h" +#include "libANGLE/Buffer.h" +#include "libANGLE/VertexArray.h" + +namespace rx +{ + +class VertexArrayImpl : angle::NonCopyable +{ + public: + VertexArrayImpl(const gl::VertexArrayState &data) : mData(data) {} + virtual ~VertexArrayImpl() { } + virtual void syncState(const gl::VertexArray::DirtyBits &dirtyBits) {} + protected: + const gl::VertexArrayState &mData; +}; + +} + +#endif // LIBANGLE_RENDERER_VERTEXARRAYIMPL_H_ |