Sign in
swiftshader
/
SwiftShader
/
9cc8c96771e2016fc553e07762802a74281d6acb
/
.
/
src
/
OpenGL
/
libEGL
/
Texture.hpp
blob: 164c48073ca7a296a8c626a8f8ebaa256ad72aa4 [
file
] [
log
] [
blame
]
#ifndef
egl_Texture_hpp
#define
egl_Texture_hpp
#include
"common/Object.hpp"
namespace
egl
{
class
Texture
:
public
gl
::
Object
{
public
:
Texture
(
GLuint
name
)
:
Object
(
name
)
{};
virtual
void
releaseTexImage
()
=
0
;
};
}
#endif
// egl_Texture_hpp