summaryrefslogtreecommitdiff
path: root/indra/llwindow/llwindowwin32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llwindow/llwindowwin32.cpp')
-rw-r--r--indra/llwindow/llwindowwin32.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp
index a8d2836f48..ebc3203f14 100644
--- a/indra/llwindow/llwindowwin32.cpp
+++ b/indra/llwindow/llwindowwin32.cpp
@@ -2560,44 +2560,6 @@ BOOL LLWindowWin32::convertCoords(LLCoordGL from, LLCoordWindow *to)
return TRUE;
}
-LLCoordCommon LL_COORD_TYPE_WINDOW::convertToCommon() const
-{
- const LLCoordWindow& self = static_cast<const LLCoordWindow&>(*this);
-
- LLWindow* windowp = &(*LLWindow::beginInstances());
- LLCoordGL out;
- windowp->convertCoords(self, &out);
- return out.convert();
-}
-
-void LL_COORD_TYPE_WINDOW::convertFromCommon(const LLCoordCommon& from)
-{
- LLCoordWindow& self = static_cast<LLCoordWindow&>(*this);
-
- LLWindow* windowp = &(*LLWindow::beginInstances());
- LLCoordGL from_gl(from);
- windowp->convertCoords(from_gl, &self);
-}
-
-LLCoordCommon LL_COORD_TYPE_SCREEN::convertToCommon() const
-{
- const LLCoordScreen& self = static_cast<const LLCoordScreen&>(*this);
-
- LLWindow* windowp = &(*LLWindow::beginInstances());
- LLCoordGL out;
- windowp->convertCoords(self, &out);
- return out.convert();
-}
-
-void LL_COORD_TYPE_SCREEN::convertFromCommon(const LLCoordCommon& from)
-{
- LLCoordScreen& self = static_cast<LLCoordScreen&>(*this);
-
- LLWindow* windowp = &(*LLWindow::beginInstances());
- LLCoordGL from_gl(from);
- windowp->convertCoords(from_gl, &self);
-}
-
BOOL LLWindowWin32::convertCoords(LLCoordWindow from, LLCoordGL* to)
{
S32 client_height;