summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libANGLE/renderer/VertexArrayImpl.h
blob: 13617c7ecb5c7039ce9a8eb7f8574a71d2d3dd08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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::VertexArray::Data &data) : mData(data) { }
    virtual ~VertexArrayImpl() { }
    virtual void syncState(const gl::VertexArray::DirtyBits &dirtyBits) {}
  protected:
    const gl::VertexArray::Data &mData;
};

}

#endif // LIBANGLE_RENDERER_VERTEXARRAYIMPL_H_