2013-05-04 10:12:40 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* 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/. */
|
|
|
|
|
|
|
|
#ifndef GFX_D3DSURFACEIMAGE_H
|
|
|
|
#define GFX_D3DSURFACEIMAGE_H
|
|
|
|
|
|
|
|
#include "mozilla/RefPtr.h"
|
|
|
|
#include "ImageContainer.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "d3d9.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
|
|
|
// Image class that wraps a IDirect3DSurface9. This class copies the image
|
|
|
|
// passed into SetData(), so that it can be accessed from other D3D devices.
|
|
|
|
// This class also manages the synchronization of the copy, to ensure the
|
|
|
|
// resource is ready to use.
|
2015-03-18 21:15:38 +00:00
|
|
|
class D3D9SurfaceImage : public Image {
|
2013-05-04 10:12:40 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
struct Data {
|
2013-05-20 05:14:13 +00:00
|
|
|
Data(IDirect3DSurface9* aSurface, const nsIntRect& aRegion)
|
|
|
|
: mSurface(aSurface), mRegion(aRegion) {}
|
2013-05-04 10:12:40 +00:00
|
|
|
RefPtr<IDirect3DSurface9> mSurface;
|
2013-05-20 05:14:13 +00:00
|
|
|
nsIntRect mRegion;
|
2013-05-04 10:12:40 +00:00
|
|
|
};
|
|
|
|
|
2014-04-07 03:09:08 +00:00
|
|
|
D3D9SurfaceImage();
|
|
|
|
virtual ~D3D9SurfaceImage();
|
|
|
|
|
2013-05-04 10:12:40 +00:00
|
|
|
// Copies the surface into a sharable texture's surface, and initializes
|
|
|
|
// the image.
|
|
|
|
HRESULT SetData(const Data& aData);
|
|
|
|
|
|
|
|
// Returns the description of the shared surface.
|
|
|
|
const D3DSURFACE_DESC& GetDesc() const;
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
gfx::IntSize GetSize() override;
|
2013-05-04 10:12:40 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual TemporaryRef<gfx::SourceSurface> GetAsSourceSurface() override;
|
2013-05-04 10:12:40 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual TextureClient* GetTextureClient(CompositableClient* aClient) override;
|
2014-04-07 03:09:08 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool IsValid() override;
|
2015-03-12 09:14:51 +00:00
|
|
|
|
2015-02-20 03:27:42 +00:00
|
|
|
private:
|
2013-05-04 10:12:40 +00:00
|
|
|
|
2015-03-09 03:18:32 +00:00
|
|
|
// Blocks the calling thread until the copy operation started in SetData()
|
|
|
|
// is complete, whereupon the texture is safe to use.
|
|
|
|
void EnsureSynchronized();
|
|
|
|
|
2013-12-13 17:32:02 +00:00
|
|
|
gfx::IntSize mSize;
|
2013-05-04 10:12:40 +00:00
|
|
|
RefPtr<IDirect3DTexture9> mTexture;
|
2015-03-09 03:18:32 +00:00
|
|
|
RefPtr<IDirect3DQuery9> mQuery;
|
2014-04-07 03:09:08 +00:00
|
|
|
RefPtr<TextureClient> mTextureClient;
|
2013-05-04 10:12:40 +00:00
|
|
|
HANDLE mShareHandle;
|
|
|
|
D3DSURFACE_DESC mDesc;
|
2015-03-12 09:13:23 +00:00
|
|
|
bool mValid;
|
2013-05-04 10:12:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namepace layers
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // GFX_D3DSURFACEIMAGE_H
|