Home
last modified time | relevance | path

Searched refs:SurfaceOpenGL (Results 1 – 3 of 3) sorted by relevance

/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_ui/ui/gl/
H A Dgl_surface.cpp25 class SurfaceOpenGL final class
28 SurfaceOpenGL(QWidget *parent, std::unique_ptr<Renderer> renderer);
29 ~SurfaceOpenGL();
53 SurfaceOpenGL::SurfaceOpenGL( in SurfaceOpenGL() function in Ui::GL::__anon2436f0680111::SurfaceOpenGL
60 SurfaceOpenGL::~SurfaceOpenGL() { in ~SurfaceOpenGL()
64 void SurfaceOpenGL::initializeGL() { in initializeGL()
78 void SurfaceOpenGL::resizeGL(int w, int h) { in resizeGL()
82 void SurfaceOpenGL::paintEvent(QPaintEvent *e) { in paintEvent()
108 void SurfaceOpenGL::callDeInit() { in callDeInit()
146 return std::make_unique<SurfaceOpenGL>( in CreateSurface()
[all …]
/dports/games/supertux/supertux-0.1.3/src/
H A Dtexture.h37 class SurfaceOpenGL; variable
59 SurfaceOpenGL* create_SurfaceOpenGL();
137 class SurfaceOpenGL : public SurfaceImpl
143 SurfaceOpenGL(SDL_Surface* surf, int use_alpha);
144 SurfaceOpenGL(const std::string& file, int use_alpha);
145 SurfaceOpenGL(const std::string& file, int x, int y, int w, int h, int use_alpha);
146 virtual ~SurfaceOpenGL();
H A Dtexture.cpp92 SurfaceOpenGL*
99 return new SurfaceOpenGL(file, use_alpha); in create_SurfaceOpenGL()
101 return new SurfaceOpenGL(file, x, y, w, h, use_alpha); in create_SurfaceOpenGL()
103 return new SurfaceOpenGL(surface, use_alpha); in create_SurfaceOpenGL()
455 SurfaceOpenGL::SurfaceOpenGL(SDL_Surface* surf, int use_alpha) in SurfaceOpenGL() function in SurfaceOpenGL
464 SurfaceOpenGL::SurfaceOpenGL(const std::string& file, int use_alpha) in SurfaceOpenGL() function in SurfaceOpenGL
473 SurfaceOpenGL::SurfaceOpenGL(const std::string& file, int x, int y, int w, int h, int use_alpha) in SurfaceOpenGL() function in SurfaceOpenGL
482 SurfaceOpenGL::~SurfaceOpenGL() in ~SurfaceOpenGL()
488 SurfaceOpenGL::create_gl(SDL_Surface * surf, GLuint * tex) in create_gl()
538 SurfaceOpenGL::draw(float x, float y, Uint8 alpha, bool update) in draw()
[all …]