2011-06-24 10:41:16 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
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/. */
|
2011-05-26 12:41:33 -07:00
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
#ifndef MOZILLA_GFX_SOURCESURFACED2D_H_
|
|
|
|
#define MOZILLA_GFX_SOURCESURFACED2D_H_
|
2011-05-26 12:41:33 -07:00
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
#include "2D.h"
|
|
|
|
#include "HelpersD2D.h"
|
|
|
|
#include <vector>
|
2011-05-26 12:41:33 -07:00
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
2011-05-26 12:41:33 -07:00
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
class SourceSurfaceD2D : public SourceSurface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SourceSurfaceD2D();
|
|
|
|
~SourceSurfaceD2D();
|
2011-05-26 12:41:33 -07:00
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
virtual SurfaceType GetType() const { return SURFACE_D2D1_BITMAP; }
|
|
|
|
virtual IntSize GetSize() const;
|
|
|
|
virtual SurfaceFormat GetFormat() const;
|
2012-07-27 17:33:08 -07:00
|
|
|
virtual bool IsValid() const;
|
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
virtual TemporaryRef<DataSourceSurface> GetDataSurface();
|
2011-05-26 12:41:33 -07:00
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
ID2D1Bitmap *GetBitmap() { return mBitmap; }
|
2011-05-26 12:41:33 -07:00
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
bool InitFromData(unsigned char *aData,
|
|
|
|
const IntSize &aSize,
|
|
|
|
int32_t aStride,
|
|
|
|
SurfaceFormat aFormat,
|
|
|
|
ID2D1RenderTarget *aRT);
|
|
|
|
bool InitFromTexture(ID3D10Texture2D *aTexture,
|
|
|
|
SurfaceFormat aFormat,
|
|
|
|
ID2D1RenderTarget *aRT);
|
2011-05-26 12:41:33 -07:00
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
private:
|
|
|
|
friend class DrawTargetD2D;
|
2011-05-26 12:41:33 -07:00
|
|
|
|
2012-06-20 14:41:16 -07:00
|
|
|
uint32_t GetByteSize() const;
|
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
RefPtr<ID2D1Bitmap> mBitmap;
|
2012-07-27 17:33:08 -07:00
|
|
|
// We need to keep this pointer here to check surface validity.
|
|
|
|
RefPtr<ID3D10Device> mDevice;
|
2011-06-24 10:41:16 -07:00
|
|
|
SurfaceFormat mFormat;
|
|
|
|
IntSize mSize;
|
2011-05-26 12:41:33 -07:00
|
|
|
};
|
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
}
|
2011-05-26 12:41:33 -07:00
|
|
|
}
|
|
|
|
|
2011-06-24 10:41:16 -07:00
|
|
|
#endif /* MOZILLA_GFX_SOURCESURFACED2D_H_ */
|