Backed out changeset b88172246b66 due to Win32 debug failures.
[mozilla-central.git] / gfx / thebes / gfxDirectFBSurface.cpp
blob6c94d78ddf2146928b67887de92d0fcac95d2d77
1 /* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 * ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is Mozilla Corporation code.
17 * The Initial Developer of the Original Code is Mozilla Foundation.
18 * Portions created by the Initial Developer are Copyright (C) 2008
19 * the Initial Developer. All Rights Reserved.
21 * Contributor(s):
22 * Vladimir Vukicevic <vladimir@pobox.com>
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 #include "gfxDirectFBSurface.h"
40 #include "cairo-directfb.h"
42 gfxDirectFBSurface::gfxDirectFBSurface(IDirectFB *dfb, IDirectFBSurface *dfbs)
43 : mDFB(nsnull), mDFBSurface(nsnull)
45 dfb->AddRef( dfb );
46 dfbs->AddRef( dfbs );
48 cairo_surface_t *surf = cairo_directfb_surface_create(dfb, dfbs);
50 mDFB = dfb;
51 mDFBSurface = dfbs;
53 Init(surf);
56 gfxDirectFBSurface::gfxDirectFBSurface(IDirectFBSurface *dfbs)
57 : mDFB(nsnull), mDFBSurface(nsnull)
59 DFBResult ret;
61 dfbs->AddRef( dfbs );
63 /* Lightweight, getting singleton */
64 ret = DirectFBCreate( &mDFB );
65 if (ret) {
66 D_DERROR( (DirectResult) ret, "gfxDirectFBSurface: DirectFBCreate() failed!\n" );
67 return;
70 cairo_surface_t *surf = cairo_directfb_surface_create(mDFB, dfbs);
72 mDFBSurface = dfbs;
74 Init(surf);
77 gfxDirectFBSurface::gfxDirectFBSurface(cairo_surface_t *csurf)
79 mDFB = nsnull;
80 mDFBSurface = nsnull;
82 Init(csurf, PR_TRUE);
85 gfxDirectFBSurface::gfxDirectFBSurface(const gfxIntSize& size, gfxImageFormat format) :
86 mDFB(nsnull), mDFBSurface(nsnull)
88 DFBResult ret;
89 DFBSurfaceDescription desc;
91 if (!CheckSurfaceSize(size) || size.width <= 0 || size.height <= 0)
92 return;
94 /* Lightweight, getting singleton */
95 ret = DirectFBCreate( &mDFB );
96 if (ret) {
97 D_DERROR( (DirectResult) ret, "gfxDirectFBSurface: DirectFBCreate() failed!\n" );
98 return;
101 desc.flags = (DFBSurfaceDescriptionFlags)( DSDESC_WIDTH | DSDESC_HEIGHT | DSDESC_PIXELFORMAT );
102 desc.width = size.width;
103 desc.height = size.height;
105 switch (format) {
106 case gfxASurface::ImageFormatARGB32:
107 desc.pixelformat = DSPF_ARGB;
108 break;
110 case gfxASurface::ImageFormatRGB24:
111 desc.pixelformat = DSPF_RGB32;
112 break;
114 case gfxASurface::ImageFormatA8:
115 desc.pixelformat = DSPF_A8;
116 break;
118 case gfxASurface::ImageFormatA1:
119 desc.pixelformat = DSPF_A1;
120 break;
122 default:
123 D_BUG( "unknown format" );
124 return;
127 ret = mDFB->CreateSurface( mDFB, &desc, &mDFBSurface );
128 if (ret) {
129 D_DERROR( (DirectResult) ret, "gfxDirectFBSurface: "
130 "IDirectFB::CreateSurface( %dx%d ) failed!\n", desc.width, desc.height );
131 return;
134 cairo_surface_t *surface = cairo_directfb_surface_create(mDFB, mDFBSurface);
136 Init(surface);
139 gfxDirectFBSurface::~gfxDirectFBSurface()
141 if (mDFBSurface)
142 mDFBSurface->Release( mDFBSurface );
144 if (mDFB)
145 mDFB->Release( mDFB );