Home
last modified time | relevance | path

Searched refs:OrthoBlit (Results 1 – 11 of 11) sorted by relevance

/dports/games/freeorion/freeorion-0.4.10.2/GG/GG/
H A DTexture.h90 void OrthoBlit(const Pt& pt1, const Pt& pt2, const GLfloat* tex_coords = nullptr) const;
94 void OrthoBlit(const Pt& pt) const;
193 void OrthoBlit(const Pt& pt1, const Pt& pt2) const;
197 void OrthoBlit(const Pt& pt) const;
/dports/games/freeorion/freeorion-0.4.10.2/UI/
H A DPlayerListWnd.cpp191 m_icon->OrthoBlit(ul, ul + GG::Pt(GG::X(ICON_SIZE), GG::Y(ICON_SIZE))); in Render()
291 … ShipIcon()->OrthoBlit(UpperLeft() + m_ship_icon_ul, UpperLeft() + m_ship_icon_ul+ ICON_SIZE); in Render()
294 …ClientUI::PlanetIcon(PT_TERRAN)->OrthoBlit(UpperLeft() + m_planet_icon_ul , UpperLeft() + m_planet… in Render()
296 …ProductionIcon()->OrthoBlit(UpperLeft() + m_production_icon_ul, UpperLeft() + m_production_icon_ul… in Render()
297 …ResearchIcon()->OrthoBlit(UpperLeft() + m_research_icon_ul, UpperLeft() + m_research_icon_ul + ICO… in Render()
298 …DetectionIcon()->OrthoBlit(UpperLeft() + m_detection_icon_ul, UpperLeft() + m_detection_icon_ul + … in Render()
320 … MessageIcon()->OrthoBlit(UpperLeft() + m_diplo_msg_ul, UpperLeft() + m_diplo_msg_ul + ICON_SIZE); in Render()
324 …(empire->Ready() ? WaitingIcon() : PlayingIcon())->OrthoBlit(UpperLeft() + m_player_status_icon_ul… in Render()
336 … HostIcon()->OrthoBlit(UpperLeft() + m_host_icon_ul, UpperLeft() + m_host_icon_ul + ICON_SIZE); in Render()
346 …case WON: WonIcon()->OrthoBlit(UpperLeft() + m_win_status_icon_ul, UpperLeft() + m_win_status_… in Render()
[all …]
H A DSystemIcon.cpp538 m_halo_texture->OrthoBlit(halo_ul, halo_lr); in RenderHalo()
544 m_disc_texture->OrthoBlit(UpperLeft(), LowerRight()); in RenderDisc()
561 m_overlay_texture->OrthoBlit(overlay_ul, overlay_lr); in RenderOverlay()
H A DMultiMeterStatusBar.cpp168 …m_bar_shading_texture->OrthoBlit(GG::Pt(BAR_LEFT, INITIAL_TOP), GG::Pt(INITIAL_RIGHT, BAR_BOTTOM)); in Render()
H A DCUIControls.cpp567 …render_checked ? m_checked_icon->OrthoBlit(icon_ul, icon_lr) : m_unchecked_icon->OrthoBlit(icon_ul… in Render()
2342 m_graphics[i].OrthoBlit(rendered_area.ul, rendered_area.lr); in Render()
H A DSidePanel.cpp707 …m_atmosphere_texture->OrthoBlit(GG::Pt(static_cast<GG::X>(ul.x - m_atmosphere_planet_rect.ul.x * x… in Render()
/dports/games/freeorion/freeorion-0.4.10.2/GG/src/
H A DTexture.cpp118 void Texture::OrthoBlit(const Pt& pt1, const Pt& pt2, in OrthoBlit() function in Texture
185 void Texture::OrthoBlit(const Pt& pt) const in OrthoBlit() function in Texture
186 { OrthoBlit(pt, pt + Pt(m_default_width, m_default_height), m_tex_coords); } in OrthoBlit()
535 void SubTexture::OrthoBlit(const Pt& pt1, const Pt& pt2) const in OrthoBlit() function in SubTexture
536 { if (m_texture) m_texture->OrthoBlit(pt1, pt2, m_tex_coords); } in OrthoBlit()
538 void SubTexture::OrthoBlit(const Pt& pt) const in OrthoBlit() function in SubTexture
539 { if (m_texture) m_texture->OrthoBlit(pt, pt + Pt(m_width, m_height), m_tex_coords); } in OrthoBlit()
H A DCursor.cpp86 m_texture->OrthoBlit(ul); in Render()
H A DButton.cpp215 m_unpressed_graphic.OrthoBlit(UpperLeft(), LowerRight()); in RenderUnpressed()
234 m_pressed_graphic.OrthoBlit(UpperLeft(), LowerRight()); in RenderPressed()
247 m_rollover_graphic.OrthoBlit(UpperLeft(), LowerRight()); in RenderRollover()
H A DStaticGraphic.cpp187 m_graphic.OrthoBlit(rendered_area.ul, rendered_area.lr); in Render()
H A DDynamicGraphic.cpp221 st.OrthoBlit(pt1, pt2); in Render()