gecko-dev/gfx/layers/GLImages.h

83 строки
1.9 KiB
C
Исходник Обычный вид История

2014-09-12 23:01:26 +04: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_GLIMAGES_H
#define GFX_GLIMAGES_H
2014-09-12 23:01:26 +04:00
#include "GLTypes.h"
2014-09-12 23:01:26 +04:00
#include "ImageContainer.h" // for Image
#include "ImageTypes.h" // for ImageFormat::SHARED_GLTEXTURE
2014-09-12 23:01:26 +04:00
#include "nsCOMPtr.h" // for already_AddRefed
#include "mozilla/gfx/Point.h" // for IntSize
namespace mozilla {
namespace gl {
class AndroidSurfaceTexture;
}
2014-09-12 23:01:26 +04:00
namespace layers {
class GLImage : public Image {
public:
explicit GLImage(ImageFormat aFormat) : Image(nullptr, aFormat){}
virtual TemporaryRef<gfx::SourceSurface> GetAsSourceSurface() MOZ_OVERRIDE;
};
class EGLImageImage : public GLImage {
public:
struct Data {
EGLImage mImage;
EGLSync mSync;
gfx::IntSize mSize;
bool mInverted;
bool mOwns;
Data() : mImage(nullptr), mSync(nullptr), mSize(0, 0), mInverted(false), mOwns(false)
{
}
};
void SetData(const Data& aData) { mData = aData; }
const Data* GetData() { return &mData; }
gfx::IntSize GetSize() { return mData.mSize; }
EGLImageImage() : GLImage(ImageFormat::EGLIMAGE) {}
protected:
virtual ~EGLImageImage();
private:
Data mData;
};
#ifdef MOZ_WIDGET_ANDROID
class SurfaceTextureImage : public GLImage {
2014-09-12 23:01:26 +04:00
public:
struct Data {
mozilla::gl::AndroidSurfaceTexture* mSurfTex;
2014-09-12 23:01:26 +04:00
gfx::IntSize mSize;
bool mInverted;
};
void SetData(const Data& aData) { mData = aData; }
const Data* GetData() { return &mData; }
gfx::IntSize GetSize() { return mData.mSize; }
SurfaceTextureImage() : GLImage(ImageFormat::SURFACE_TEXTURE) {}
2014-09-12 23:01:26 +04:00
private:
Data mData;
};
#endif // MOZ_WIDGET_ANDROID
2014-09-12 23:01:26 +04:00
} // layers
} // mozilla
#endif // GFX_GLIMAGES_H