Home
last modified time | relevance | path

Searched refs:TextTexture (Results 1 – 15 of 15) sorted by relevance

/dports/games/allacrost/allacrost-1.0.2/src/engine/video/
H A Dtext.h161 class TextTexture : public private_video::BaseTexture {
166 TextTexture(const hoa_utils::ustring& string_, const TextStyle& style_);
168 ~TextTexture();
187 TextTexture(const TextTexture& copy);
188 TextTexture& operator=(const TextTexture& copy);
205 TextElement(TextTexture* texture);
212 TextTexture* text_texture;
239 void SetTexture(TextTexture* texture);
388 friend class private_video::TextTexture;
H A Dtexture_controller.h50 friend class private_video::TextTexture;
108 std::set<private_video::TextTexture*> _text_images;
217 void _RegisterTextTexture(private_video::TextTexture* tex);
222 void _UnregisterTextTexture(private_video::TextTexture* tex);
228 bool _IsTextTextureRegistered(private_video::TextTexture* tex) const in _IsTextTextureRegistered()
H A Dtext.cpp150 TextTexture::TextTexture(const hoa_utils::ustring& string_, const TextStyle& style_) : in TextTexture() function in hoa_video::private_video::TextTexture
161 TextTexture::~TextTexture() { in ~TextTexture()
168 bool TextTexture::Regenerate() { in Regenerate()
199 bool TextTexture::Reload() { in Reload()
231 TextElement::TextElement(TextTexture* texture) : in TextElement()
297 void TextElement::SetTexture(TextTexture* texture) { in SetTexture()
488 TextTexture* texture = new TextTexture(*line_iter, _style); in _Regenerate()
H A Dtexture_controller.cpp601 for (set<TextTexture*>::iterator i = _text_images.begin(); i != _text_images.end(); i++) { in _ReloadImagesToSheet()
649 void TextureController::_RegisterTextTexture(TextTexture* tex) { in _RegisterTextTexture()
665 void TextureController::_UnregisterTextTexture(TextTexture* tex) { in _UnregisterTextTexture()
671 std::set<private_video::TextTexture*>::iterator tex_iter = _text_images.find(tex); in _UnregisterTextTexture()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/engine/video/
H A Dtexture_controller.h40 class TextTexture; variable
51 friend class private_video::TextTexture;
86 std::set<private_video::TextTexture *> _text_images;
183 void _RegisterTextTexture(private_video::TextTexture *tex);
188 void _UnregisterTextTexture(private_video::TextTexture *tex);
194 bool _IsTextTextureRegistered(private_video::TextTexture *tex) const { in _IsTextTextureRegistered()
H A Dtext.h229 class TextTexture : public private_video::BaseTexture
235 TextTexture(const vt_utils::ustring &string_, const TextStyle &style_);
237 ~TextTexture();
256 TextTexture(const TextTexture &copy);
257 TextTexture &operator=(const TextTexture &copy);
275 explicit TextElement(TextTexture* texture);
282 TextTexture *text_texture;
303 void SetTexture(TextTexture *texture);
506 friend class private_video::TextTexture;
H A Dtext.cpp239 TextTexture::TextTexture(const vt_utils::ustring &string_, in TextTexture() function in vt_video::private_video::TextTexture
249 TextTexture::~TextTexture() in ~TextTexture()
255 bool TextTexture::Regenerate() in Regenerate()
281 bool TextTexture::Reload() in Reload()
308 TextElement::TextElement(TextTexture *texture) : in TextElement()
355 void TextElement::SetTexture(TextTexture *texture) in SetTexture()
534 TextTexture *texture = new TextTexture(*line_iter, _style); in _Regenerate()
H A Dtexture_controller.cpp443 for(std::set<TextTexture *>::iterator i = _text_images.begin(); i != _text_images.end(); ++i) { in _ReloadImagesToSheet()
493 void TextureController::_RegisterTextTexture(TextTexture *tex) in _RegisterTextTexture()
510 void TextureController::_UnregisterTextTexture(TextTexture *tex) in _UnregisterTextTexture()
517 std::set<private_video::TextTexture *>::iterator tex_iter = _text_images.find(tex); in _UnregisterTextTexture()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/vr/elements/
H A Dtext.cc148 class TextTexture : public UiTexture { class
150 explicit TextTexture(Text* element) : element_(element) {} in TextTexture() function in vr::TextTexture
152 ~TextTexture() override {} in ~TextTexture()
260 DISALLOW_COPY_AND_ASSIGN(TextTexture);
264 : TexturedElement(), texture_(std::make_unique<TextTexture>(this)) { in Text()
384 gfx::Size TextTexture::LayOutText() { in LayOutText()
450 void TextTexture::Draw(SkCanvas* sk_canvas, const gfx::Size& texture_size) { in Draw()
465 void TextTexture::PrepareDrawStringRect( in PrepareDrawStringRect()
483 void TextTexture::PrepareDrawWrapText(const base::string16& text, in PrepareDrawWrapText()
526 void TextTexture::PrepareDrawSingleLineText( in PrepareDrawSingleLineText()
H A Dtext.h27 class TextTexture; variable
156 std::unique_ptr<TextTexture> texture_;
/dports/multimedia/webvfx-qt5/webvfx-e918ce4/webvfx/resources/org/webvfx/WebVfx/
H A Dqmldir3 TextTexture 1.0 TextTexture.qml
/dports/multimedia/webvfx-qt5/webvfx-e918ce4/demo/examples/
H A Dtransition-demo3d.qml21 TextTexture {
56 // Texture the quad with the image rendered by the TextTexture
/dports/x11-toolkits/gtkglext/gtkglext-1.2.0/examples/
H A Dfont-pangoft2-tex.c39 } TextTexture; typedef
41 static TextTexture text_texture = {
/dports/multimedia/webvfx-qt5/webvfx-e918ce4/doc/
H A Deffects_3d.dox34 @li @c TextTexture - this is a @c <a href="http://qt-project.org/doc/latest/qml-qtquick-text.html">…
/dports/games/allacrost/allacrost-1.0.2/src/
H A Ddefs.h112 class TextTexture; variable