gecko-dev/gfx/thebes/gfxWindowsSurface.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

123 строки
3.4 KiB
C++
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2012-05-21 15:12:37 +04:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2005-04-06 05:54:26 +04:00
2005-04-07 23:12:19 +04:00
#include "gfxWindowsSurface.h"
#include "gfxContext.h"
#include "gfxPlatform.h"
#include "mozilla/gfx/2D.h"
#include "mozilla/gfx/HelpersCairo.h"
#include "mozilla/gfx/Logging.h"
#include "cairo.h"
#include "cairo-win32.h"
#include "nsString.h"
gfxWindowsSurface::gfxWindowsSurface(HDC dc, uint32_t flags)
: mOwnsDC(false), mDC(dc), mWnd(nullptr) {
InitWithDC(flags);
2005-08-20 09:36:47 +04:00
}
void gfxWindowsSurface::MakeInvalid(mozilla::gfx::IntSize& size) {
size = mozilla::gfx::IntSize(-1, -1);
}
gfxWindowsSurface::gfxWindowsSurface(const mozilla::gfx::IntSize& realSize,
gfxImageFormat imageFormat)
: mOwnsDC(false), mWnd(nullptr) {
mozilla::gfx::IntSize size(realSize);
if (!mozilla::gfx::Factory::CheckSurfaceSize(size)) MakeInvalid(size);
cairo_format_t cformat = GfxFormatToCairoFormat(imageFormat);
cairo_surface_t* surf =
cairo_win32_surface_create_with_dib(cformat, size.width, size.height);
Init(surf);
if (CairoStatus() == CAIRO_STATUS_SUCCESS) {
mDC = cairo_win32_surface_get_dc(CairoSurface());
RecordMemoryUsed(size.width * size.height * 4 + sizeof(gfxWindowsSurface));
} else {
mDC = nullptr;
}
}
gfxWindowsSurface::gfxWindowsSurface(cairo_surface_t* csurf)
: mOwnsDC(false), mWnd(nullptr) {
if (cairo_surface_status(csurf) == 0)
mDC = cairo_win32_surface_get_dc(csurf);
else
mDC = nullptr;
MOZ_ASSERT(cairo_surface_get_type(csurf) !=
CAIRO_SURFACE_TYPE_WIN32_PRINTING);
Init(csurf, true);
}
void gfxWindowsSurface::InitWithDC(uint32_t flags) {
if (flags & FLAG_IS_TRANSPARENT) {
Init(cairo_win32_surface_create_with_format(mDC, CAIRO_FORMAT_ARGB32));
} else {
Init(cairo_win32_surface_create(mDC));
}
}
2005-04-07 23:12:19 +04:00
gfxWindowsSurface::~gfxWindowsSurface() {
if (mOwnsDC) {
if (mWnd)
::ReleaseDC(mWnd, mDC);
else
::DeleteDC(mDC);
}
2005-04-06 05:54:26 +04:00
}
2006-02-01 08:21:59 +03:00
HDC gfxWindowsSurface::GetDC() {
return cairo_win32_surface_get_dc(CairoSurface());
}
already_AddRefed<gfxImageSurface> gfxWindowsSurface::GetAsImageSurface() {
if (!mSurfaceValid) {
NS_WARNING(
"GetImageSurface on an invalid (null) surface; who's calling this "
"without checking for surface errors?");
return nullptr;
}
NS_ASSERTION(
CairoSurface() != nullptr,
"CairoSurface() shouldn't be nullptr when mSurfaceValid is TRUE!");
cairo_surface_t* isurf = cairo_win32_surface_get_image(CairoSurface());
if (!isurf) return nullptr;
Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi --HG-- rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
2015-10-18 08:24:48 +03:00
RefPtr<gfxImageSurface> result =
gfxASurface::Wrap(isurf).downcast<gfxImageSurface>();
result->SetOpaqueRect(GetOpaqueRect());
return result.forget();
}
const mozilla::gfx::IntSize gfxWindowsSurface::GetSize() const {
if (!mSurfaceValid) {
NS_WARNING(
"GetImageSurface on an invalid (null) surface; who's calling this "
"without checking for surface errors?");
return mozilla::gfx::IntSize(-1, -1);
}
NS_ASSERTION(
mSurface != nullptr,
"CairoSurface() shouldn't be nullptr when mSurfaceValid is TRUE!");
int width, height;
if (cairo_win32_surface_get_size(mSurface, &width, &height) !=
CAIRO_STATUS_SUCCESS) {
return mozilla::gfx::IntSize(-1, -1);
}
return mozilla::gfx::IntSize(width, height);
}