Overte C++ Documentation
GLInputFormat.h
1 //
2 // Created by Sam Gateau on 2016/07/21
3 // Copyright 2013-2016 High Fidelity, Inc.
4 //
5 // Distributed under the Apache License, Version 2.0.
6 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
7 //
8 #ifndef hifi_gpu_gl_GLInputFormat_h
9 #define hifi_gpu_gl_GLInputFormat_h
10 
11 #include "GLShared.h"
12 
13 namespace gpu {
14 namespace gl {
15 
16 class GLInputFormat : public GPUObject {
17  public:
18  static GLInputFormat* sync(const Stream::Format& inputFormat);
19 
20  GLInputFormat();
21  ~GLInputFormat();
22 
23  std::string key;
24 };
25 
26 }
27 }
28 
29 #endif