2010-05-24 15:28:51 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 11:12:37 +00: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 15:28:51 +00:00
|
|
|
|
|
|
|
#ifndef GFX_IMAGELAYERD3D9_H
|
|
|
|
#define GFX_IMAGELAYERD3D9_H
|
|
|
|
|
|
|
|
#include "LayerManagerD3D9.h"
|
|
|
|
#include "ImageLayers.h"
|
2012-08-19 19:33:25 +00:00
|
|
|
#include "ImageContainer.h"
|
2010-09-03 04:20:23 +00:00
|
|
|
#include "yuv_convert.h"
|
2010-05-24 15:28:51 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
2013-05-29 21:59:24 +00:00
|
|
|
class ImageLayerD3D9 : public ImageLayer,
|
|
|
|
public LayerD3D9
|
2010-05-24 15:28:51 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ImageLayerD3D9(LayerManagerD3D9 *aManager)
|
2013-07-20 08:48:55 +00:00
|
|
|
: ImageLayer(aManager, nullptr)
|
2010-05-24 15:28:51 +00:00
|
|
|
, LayerD3D9(aManager)
|
2010-05-29 03:27:03 +00:00
|
|
|
{
|
2010-05-24 15:28:51 +00:00
|
|
|
mImplData = static_cast<LayerD3D9*>(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// LayerD3D9 Implementation
|
|
|
|
virtual Layer* GetLayer();
|
|
|
|
|
2010-11-08 09:06:15 +00:00
|
|
|
virtual void RenderLayer();
|
2012-03-06 21:07:48 +00:00
|
|
|
|
2013-12-20 16:46:29 +00:00
|
|
|
virtual already_AddRefed<IDirect3DTexture9> GetAsTexture(gfx::IntSize* aSize);
|
2012-03-06 21:07:48 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
IDirect3DTexture9* GetTexture(Image *aImage, bool& aHasAlpha);
|
2010-05-24 15:28:51 +00:00
|
|
|
};
|
|
|
|
|
2012-02-01 02:18:30 +00:00
|
|
|
|
2012-02-16 03:26:19 +00:00
|
|
|
struct TextureD3D9BackendData : public ImageBackendData
|
2010-05-24 15:28:51 +00:00
|
|
|
{
|
2012-02-01 02:18:30 +00:00
|
|
|
nsRefPtr<IDirect3DTexture9> mTexture;
|
2010-05-24 15:28:51 +00:00
|
|
|
};
|
|
|
|
|
2012-02-01 02:18:30 +00:00
|
|
|
struct PlanarYCbCrD3D9BackendData : public ImageBackendData
|
2010-05-24 15:28:51 +00:00
|
|
|
{
|
2012-02-01 02:18:30 +00:00
|
|
|
nsRefPtr<IDirect3DTexture9> mYTexture;
|
|
|
|
nsRefPtr<IDirect3DTexture9> mCrTexture;
|
|
|
|
nsRefPtr<IDirect3DTexture9> mCbTexture;
|
2010-05-24 15:28:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* layers */
|
|
|
|
} /* mozilla */
|
|
|
|
#endif /* GFX_IMAGELAYERD3D9_H */
|