Sign in
swiftshader
/
SwiftShader
/
4c5b1a353de0e41572a325d76a8c21a0257220a9
/
.
/
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