2010-05-24 08:28:51 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 04:12:37 -07: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/. */
|
2010-05-24 08:28:51 -07:00
|
|
|
|
|
|
|
#ifndef GFX_CONTAINERLAYERD3D9_H
|
|
|
|
#define GFX_CONTAINERLAYERD3D9_H
|
|
|
|
|
|
|
|
#include "Layers.h"
|
|
|
|
#include "LayerManagerD3D9.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
2011-07-04 06:15:05 -07:00
|
|
|
|
2010-05-28 20:27:03 -07:00
|
|
|
class ContainerLayerD3D9 : public ContainerLayer,
|
2010-05-25 00:37:19 -07:00
|
|
|
public LayerD3D9
|
2010-05-24 08:28:51 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ContainerLayerD3D9(LayerManagerD3D9 *aManager);
|
2010-05-25 00:37:19 -07:00
|
|
|
~ContainerLayerD3D9();
|
2010-05-24 08:28:51 -07:00
|
|
|
|
2010-05-31 16:29:37 -07:00
|
|
|
nsIntRect GetVisibleRect() { return mVisibleRegion.GetBounds(); }
|
2010-05-24 08:28:51 -07:00
|
|
|
|
|
|
|
/* LayerD3D9 implementation */
|
|
|
|
Layer* GetLayer();
|
|
|
|
|
|
|
|
LayerD3D9* GetFirstChildD3D9();
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsEmpty();
|
2010-05-24 08:28:51 -07:00
|
|
|
|
2010-11-08 01:06:15 -08:00
|
|
|
void RenderLayer();
|
2010-09-15 15:15:49 -07:00
|
|
|
|
|
|
|
virtual void LayerManagerDestroyed();
|
2010-10-21 13:41:04 -07:00
|
|
|
|
2014-01-27 07:28:04 -08:00
|
|
|
virtual void ComputeEffectiveTransforms(const gfx::Matrix4x4& aTransformToSurface)
|
2010-11-08 01:06:15 -08:00
|
|
|
{
|
|
|
|
DefaultComputeEffectiveTransforms(aTransformToSurface);
|
|
|
|
}
|
2010-05-24 08:28:51 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* layers */
|
|
|
|
} /* mozilla */
|
|
|
|
|
|
|
|
#endif /* GFX_CONTAINERLAYERD3D9_H */
|