comparison Framework/Scene2D/OpenGLCompositor.h @ 890:77c96ba899f9

removing OpenGLCompositor::UpdateSize()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 10 Jul 2019 15:23:13 +0200
parents 7efa2543699d
children 0aff28f15ea2
comparison
equal deleted inserted replaced
888:6e888cf6a48b 890:77c96ba899f9
54 OpenGLCompositor(OpenGL::IOpenGLContext& context, 54 OpenGLCompositor(OpenGL::IOpenGLContext& context,
55 const Scene2D& scene); 55 const Scene2D& scene);
56 56
57 ~OpenGLCompositor(); 57 ~OpenGLCompositor();
58 58
59 void UpdateSize();
60
61 void Refresh(); 59 void Refresh();
62 60
63 void SetFont(size_t index, 61 void SetFont(size_t index,
64 const GlyphBitmapAlphabet& dict); 62 const GlyphBitmapAlphabet& dict);
65 63
78 unsigned int GetCanvasHeight() const 76 unsigned int GetCanvasHeight() const
79 { 77 {
80 return canvasHeight_; 78 return canvasHeight_;
81 } 79 }
82 80
81 // TODO => REMOVE
83 ScenePoint2D GetPixelCenterCoordinates(int x, int y) const; 82 ScenePoint2D GetPixelCenterCoordinates(int x, int y) const;
84 }; 83 };
85 } 84 }