зеркало из https://github.com/mozilla/gecko-dev.git
Backed out changeset 64c58cb9c49b (bug 918078) for bustage
This commit is contained in:
Родитель
ca83e65db1
Коммит
d1b254f231
|
@ -161,20 +161,6 @@ TextureHost::~TextureHost()
|
|||
{
|
||||
}
|
||||
|
||||
#ifdef MOZ_LAYERS_HAVE_LOG
|
||||
|
||||
void
|
||||
TextureHost::PrintInfo(nsACString& aTo, const char* aPrefix)
|
||||
{
|
||||
aTo += aPrefix;
|
||||
aTo += nsPrintfCString("%s (0x%p)", Name(), this);
|
||||
AppendToString(aTo, GetSize(), " [size=", "]");
|
||||
AppendToString(aTo, GetFormat(), " [format=", "]");
|
||||
AppendToString(aTo, mFlags, " [flags=", "]");
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
void TextureSource::SetCompositableQuirks(CompositableQuirks* aQuirks)
|
||||
{
|
||||
mQuirks = aQuirks;
|
||||
|
@ -245,6 +231,12 @@ DeprecatedTextureHost::SwapTextures(const SurfaceDescriptor& aImage,
|
|||
}
|
||||
|
||||
#ifdef MOZ_LAYERS_HAVE_LOG
|
||||
void
|
||||
TextureSource::PrintInfo(nsACString& aTo, const char* aPrefix)
|
||||
{
|
||||
aTo += aPrefix;
|
||||
aTo += nsPrintfCString("UnknownTextureSource (0x%p)", this);
|
||||
}
|
||||
|
||||
void
|
||||
DeprecatedTextureHost::PrintInfo(nsACString& aTo, const char* aPrefix)
|
||||
|
|
|
@ -120,6 +120,10 @@ public:
|
|||
|
||||
virtual void SetCompositableQuirks(CompositableQuirks* aQuirks);
|
||||
|
||||
#ifdef MOZ_LAYERS_HAVE_LOG
|
||||
virtual void PrintInfo(nsACString& aTo, const char* aPrefix);
|
||||
#endif
|
||||
|
||||
protected:
|
||||
RefPtr<CompositableQuirks> mQuirks;
|
||||
};
|
||||
|
@ -385,7 +389,13 @@ public:
|
|||
virtual void SetCompositableQuirks(CompositableQuirks* aQuirks);
|
||||
|
||||
#ifdef MOZ_LAYERS_HAVE_LOG
|
||||
virtual void PrintInfo(nsACString& aTo, const char* aPrefix);
|
||||
virtual void PrintInfo(nsACString& aTo, const char* aPrefix)
|
||||
{
|
||||
RefPtr<TextureSource> source = GetTextureSources();
|
||||
if (source) {
|
||||
source->PrintInfo(aTo, aPrefix);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
protected:
|
||||
|
|
Загрузка…
Ссылка в новой задаче