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,21 +19,19 @@
#include "glad/glad.h"
namespace backend {
namespace opengl {
namespace backend { namespace opengl {
class Device;
class SwapChain : public SwapChainBase {
public:
SwapChain(SwapChainBuilder* builder);
~SwapChain();
public:
SwapChain(SwapChainBuilder* builder);
~SwapChain();
protected:
TextureBase* GetNextTextureImpl(TextureBuilder* builder) override;
protected:
TextureBase* GetNextTextureImpl(TextureBuilder* builder) override;
};
}
}
}} // namespace backend::opengl
#endif // BACKEND_OPENGL_SWAPCHAINGL_H_
#endif // BACKEND_OPENGL_SWAPCHAINGL_H_