Bug 1191040 - Ensure that we only compute the tile size once. r=BenWa

--HG--
extra : rebase_source : ffe1817416bc678c4ea8a0a42d809afd4d3db86d
This commit is contained in:
Matt Woodrow 2015-08-07 15:37:56 -04:00
Родитель cbcf9a014e
Коммит 1e2e762f3c
4 изменённых файлов: 10 добавлений и 12 удалений

Просмотреть файл

@ -682,8 +682,6 @@ CompositorParent::CompositorParent(nsIWidget* aWidget,
mCompositorScheduler = new CompositorSoftwareTimerScheduler(this);
}
gfxPlatform::GetPlatform()->ComputeTileSize();
LayerScope::SetPixelScale(mWidget->GetDefaultScale().scale);
}
@ -1735,7 +1733,6 @@ public:
, mNotifyAfterRemotePaint(false)
{
MOZ_ASSERT(NS_IsMainThread());
gfxPlatform::GetPlatform()->ComputeTileSize();
}
// IToplevelProtocol::CloneToplevel()

Просмотреть файл

@ -11,8 +11,6 @@ namespace mozilla {
namespace layers {
TEST(TiledLayerBuffer, TileStart) {
gfxPlatform::GetPlatform()->ComputeTileSize();
ASSERT_EQ(RoundDownToTileEdge(10, 256), 0);
ASSERT_EQ(RoundDownToTileEdge(-10, 256), -256);
}

Просмотреть файл

@ -504,6 +504,8 @@ gfxPlatform::Init()
InitLayersAccelerationPrefs();
InitLayersIPC();
gPlatform->ComputeTileSize();
nsresult rv;
bool usePlatformFontList = true;
@ -1002,7 +1004,7 @@ gfxPlatform::ComputeTileSize()
// The tile size should be picked in the parent processes
// and sent to the child processes over IPDL GetTileSize.
if (!XRE_IsParentProcess()) {
NS_RUNTIMEABORT("wrong process.");
return;
}
int32_t w = gfxPrefs::LayersTileWidth();

Просмотреть файл

@ -307,12 +307,6 @@ public:
int GetTileWidth();
int GetTileHeight();
void SetTileSize(int aWidth, int aHeight);
/**
* Calling this function will compute and set the ideal tile size for the
* platform. This should only be called in the parent process; child processes
* should be updated via SetTileSize to match the value computed in the parent.
*/
void ComputeTileSize();
/**
* Rebuilds the any cached system font lists
@ -760,6 +754,13 @@ private:
virtual void GetPlatformCMSOutputProfile(void *&mem, size_t &size);
/**
* Calling this function will compute and set the ideal tile size for the
* platform. This will only have an effect in the parent process; child processes
* should be updated via SetTileSize to match the value computed in the parent.
*/
void ComputeTileSize();
nsRefPtr<gfxASurface> mScreenReferenceSurface;
nsTArray<uint32_t> mCJKPrefLangs;
nsCOMPtr<nsIObserver> mSRGBOverrideObserver;