summaryrefslogtreecommitdiff
path: root/vcl/headless
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-03-27 02:11:39 +0200
committerTor Lillqvist <tml@iki.fi>2013-03-27 02:12:30 +0200
commit2b520e7d8a0cf12c71b8fc09d6d83dda8a3b6c32 (patch)
treedc492c46e496ab424b0e378bc0fa5ee99d30241a /vcl/headless
parent839a61c48c191ba9b9455bc9a64b1cd3f232d2f8 (diff)
Bypass X11-specific fields for Android
Change-Id: Ic8bfd4467b2fbcdcfa2caeb04d4ebe95f13863a2
Diffstat (limited to 'vcl/headless')
-rw-r--r--vcl/headless/svpframe.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/vcl/headless/svpframe.cxx b/vcl/headless/svpframe.cxx
index dfe96a004004..bf679d9bc5d3 100644
--- a/vcl/headless/svpframe.cxx
+++ b/vcl/headless/svpframe.cxx
@@ -84,15 +84,12 @@ SvpSalFrame::SvpSalFrame( SvpSalInstance* pInstance,
m_aSystemChildData.nSize = sizeof( SystemChildData );
#ifdef IOS
// Nothing
+#elif defined ANDROID
+ // Nothing
#else
m_aSystemChildData.pSalFrame = this;
-#ifdef ANDROID
- // We want 32-bit RGBA bitmaps
- m_aSystemChildData.nDepth = 32;
-#else
m_aSystemChildData.nDepth = 24;
#endif
-#endif
if( m_pParent )
m_pParent->m_aChildren.push_back( this );