2014-09-12 19:01:26 +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/. */
|
|
|
|
|
2014-09-17 13:13:29 +00:00
|
|
|
#ifndef GFX_GLIMAGES_H
|
|
|
|
#define GFX_GLIMAGES_H
|
2014-09-12 19:01:26 +00:00
|
|
|
|
2016-02-23 19:40:20 +00:00
|
|
|
#include "AndroidSurfaceTexture.h"
|
2014-11-18 01:02:19 +00:00
|
|
|
#include "GLContextTypes.h"
|
2014-09-17 13:13:29 +00:00
|
|
|
#include "GLTypes.h"
|
2014-09-12 19:01:26 +00:00
|
|
|
#include "ImageContainer.h" // for Image
|
2014-09-17 13:13:29 +00:00
|
|
|
#include "ImageTypes.h" // for ImageFormat::SHARED_GLTEXTURE
|
2014-09-12 19:01:26 +00:00
|
|
|
#include "nsCOMPtr.h" // for already_AddRefed
|
|
|
|
#include "mozilla/gfx/Point.h" // for IntSize
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
2014-11-26 21:16:08 +00:00
|
|
|
class GLImage : public Image {
|
|
|
|
public:
|
2014-12-10 22:48:11 +00:00
|
|
|
explicit GLImage(ImageFormat aFormat) : Image(nullptr, aFormat){}
|
2014-11-26 21:16:08 +00:00
|
|
|
|
2015-06-17 14:00:52 +00:00
|
|
|
virtual already_AddRefed<gfx::SourceSurface> GetAsSourceSurface() override;
|
2014-11-26 21:16:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class EGLImageImage : public GLImage {
|
2014-09-17 13:13:29 +00:00
|
|
|
public:
|
2015-11-17 08:09:00 +00:00
|
|
|
EGLImageImage(EGLImage aImage, EGLSync aSync,
|
|
|
|
const gfx::IntSize& aSize, const gl::OriginPos& aOrigin,
|
|
|
|
bool aOwns);
|
|
|
|
|
|
|
|
gfx::IntSize GetSize() override { return mSize; }
|
|
|
|
gl::OriginPos GetOriginPos() const {
|
|
|
|
return mPos;
|
|
|
|
}
|
|
|
|
EGLImage GetImage() const {
|
|
|
|
return mImage;
|
|
|
|
}
|
|
|
|
EGLSync GetSync() const {
|
|
|
|
return mSync;
|
|
|
|
}
|
|
|
|
|
|
|
|
EGLImageImage* AsEGLImageImage() override {
|
|
|
|
return this;
|
|
|
|
}
|
2014-09-17 13:13:29 +00:00
|
|
|
|
2014-11-26 21:16:07 +00:00
|
|
|
protected:
|
|
|
|
virtual ~EGLImageImage();
|
|
|
|
|
2014-09-17 13:13:29 +00:00
|
|
|
private:
|
2015-11-17 08:09:00 +00:00
|
|
|
EGLImage mImage;
|
|
|
|
EGLSync mSync;
|
|
|
|
gfx::IntSize mSize;
|
|
|
|
gl::OriginPos mPos;
|
|
|
|
bool mOwns;
|
2014-09-17 13:13:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
|
2014-11-26 21:16:08 +00:00
|
|
|
class SurfaceTextureImage : public GLImage {
|
2014-09-12 19:01:26 +00:00
|
|
|
public:
|
2015-11-17 08:09:00 +00:00
|
|
|
SurfaceTextureImage(gl::AndroidSurfaceTexture* aSurfTex,
|
|
|
|
const gfx::IntSize& aSize,
|
|
|
|
gl::OriginPos aOriginPos);
|
2014-09-12 19:01:26 +00:00
|
|
|
|
2015-11-17 08:09:00 +00:00
|
|
|
gfx::IntSize GetSize() override { return mSize; }
|
|
|
|
gl::AndroidSurfaceTexture* GetSurfaceTexture() const {
|
|
|
|
return mSurfaceTexture;
|
|
|
|
}
|
|
|
|
gl::OriginPos GetOriginPos() const {
|
|
|
|
return mOriginPos;
|
|
|
|
}
|
2014-09-12 19:01:26 +00:00
|
|
|
|
2015-11-17 08:09:00 +00:00
|
|
|
SurfaceTextureImage* AsSurfaceTextureImage() override {
|
|
|
|
return this;
|
|
|
|
}
|
2014-09-12 19:01:26 +00:00
|
|
|
|
|
|
|
private:
|
2016-02-23 19:40:20 +00:00
|
|
|
RefPtr<gl::AndroidSurfaceTexture> mSurfaceTexture;
|
2015-11-17 08:09:00 +00:00
|
|
|
gfx::IntSize mSize;
|
|
|
|
gl::OriginPos mOriginPos;
|
2014-09-12 19:01:26 +00:00
|
|
|
};
|
|
|
|
|
2014-09-17 13:13:29 +00:00
|
|
|
#endif // MOZ_WIDGET_ANDROID
|
|
|
|
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|
2014-09-12 19:01:26 +00:00
|
|
|
|
2014-09-17 13:13:29 +00:00
|
|
|
#endif // GFX_GLIMAGES_H
|