mirror of https://github.com/AxioDL/boo.git
added ISurface interface
This commit is contained in:
parent
0fa62e310a
commit
454891b4e5
|
@ -2,6 +2,7 @@
|
||||||
#define CCGLCONTEXT_HPP
|
#define CCGLCONTEXT_HPP
|
||||||
|
|
||||||
#include "IContext.hpp"
|
#include "IContext.hpp"
|
||||||
|
#include <OpenGL/OpenGL.h>
|
||||||
|
|
||||||
class CCGLContext final : public IContext
|
class CCGLContext final : public IContext
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
#ifndef ISURFACE_HPP
|
||||||
|
#define ISURFACE_HPP
|
||||||
|
|
||||||
|
class ISurface
|
||||||
|
{
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // CSURFACE_HPP
|
|
@ -1,6 +1,8 @@
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
$$PWD/include/boo.hpp \
|
$$PWD/include/boo.hpp \
|
||||||
$$PWD/include/IContext.hpp
|
$$PWD/include/IContext.hpp \
|
||||||
|
$$PWD/include/CCGLContext.hpp \
|
||||||
|
$$PWD/include/ISurface.hpp
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
$$PWD/src/CCGLContext.cpp
|
$$PWD/src/CCGLContext.cpp
|
||||||
|
|
Loading…
Reference in New Issue