Format: src/backend/opengl

This commit is contained in:
Corentin Wallez
2017-11-24 14:16:15 -05:00
committed by Corentin Wallez
parent 1aa4d5604f
commit c7807abf04
31 changed files with 821 additions and 891 deletions

View File

@@ -19,22 +19,20 @@
#include "glad/glad.h"
namespace backend {
namespace opengl {
namespace backend { namespace opengl {
class Device;
class Sampler : public SamplerBase {
public:
Sampler(SamplerBuilder* builder);
public:
Sampler(SamplerBuilder* builder);
GLuint GetHandle() const;
GLuint GetHandle() const;
private:
GLuint mHandle;
private:
GLuint mHandle;
};
}
}
}} // namespace backend::opengl
#endif // BACKEND_OPENGL_SAMPLERGL_H_
#endif // BACKEND_OPENGL_SAMPLERGL_H_