mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
be5f1b23e0
CLOSED TREE
110 lines
3.1 KiB
C++
110 lines
3.1 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* 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/. */
|
|
|
|
#ifndef GFX_LAYERSLOGGING_H
|
|
#define GFX_LAYERSLOGGING_H
|
|
|
|
#include "Layers.h"
|
|
#include "nsPoint.h"
|
|
#include "mozilla/gfx/Point.h"
|
|
#include "mozilla/gfx/Rect.h"
|
|
#include "mozilla/layers/Compositor.h"
|
|
#include "FrameMetrics.h"
|
|
#include "gfxPattern.h"
|
|
#include "gfxColor.h"
|
|
#include "gfx3DMatrix.h"
|
|
#include "nsRegion.h"
|
|
#include "nsPrintfCString.h"
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const void* p,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const gfxPattern::GraphicsFilter& f,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, FrameMetrics::ViewID n,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const gfxRGBA& c,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const gfx3DMatrix& m,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const nsIntPoint& p,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
template<class T>
|
|
nsACString&
|
|
AppendToString(nsACString& s, const mozilla::gfx::PointTyped<T>& p,
|
|
const char* pfx="", const char* sfx="")
|
|
{
|
|
s += pfx;
|
|
s += nsPrintfCString("(x=%f, y=%f)", p.x, p.y);
|
|
return s += sfx;
|
|
}
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const nsIntRect& r,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
template<class T>
|
|
nsACString&
|
|
AppendToString(nsACString& s, const mozilla::gfx::RectTyped<T>& r,
|
|
const char* pfx="", const char* sfx="")
|
|
{
|
|
s += pfx;
|
|
s.AppendPrintf(
|
|
"(x=%f, y=%f, w=%f, h=%f)",
|
|
r.x, r.y, r.width, r.height);
|
|
return s += sfx;
|
|
}
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const nsIntRegion& r,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const nsIntSize& sz,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const FrameMetrics& m,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const mozilla::gfx::IntSize& size,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const mozilla::gfx::Matrix4x4& m,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, const mozilla::gfx::Filter filter,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, mozilla::layers::TextureFlags flags,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
nsACString&
|
|
AppendToString(nsACString& s, mozilla::gfx::SurfaceFormat format,
|
|
const char* pfx="", const char* sfx="");
|
|
|
|
} // namespace
|
|
} // namespace
|
|
|
|
#endif /* GFX_LAYERSLOGGING_H */
|