mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
86 lines
2.1 KiB
C
86 lines
2.1 KiB
C
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||
|
/* 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 TEXTUREIMAGEEGL_H_
|
||
|
#define TEXTUREIMAGEEGL_H_
|
||
|
|
||
|
#include "GLTextureImage.h"
|
||
|
|
||
|
namespace mozilla {
|
||
|
namespace gl {
|
||
|
|
||
|
class TextureImageEGL
|
||
|
: public TextureImage
|
||
|
{
|
||
|
public:
|
||
|
TextureImageEGL(GLuint aTexture,
|
||
|
const nsIntSize& aSize,
|
||
|
GLenum aWrapMode,
|
||
|
ContentType aContentType,
|
||
|
GLContext* aContext,
|
||
|
Flags aFlags = TextureImage::NoFlags,
|
||
|
TextureState aTextureState = Created,
|
||
|
TextureImage::ImageFormat aImageFormat = gfxImageFormatUnknown);
|
||
|
|
||
|
virtual ~TextureImageEGL();
|
||
|
|
||
|
virtual void GetUpdateRegion(nsIntRegion& aForRegion);
|
||
|
|
||
|
virtual gfxASurface* BeginUpdate(nsIntRegion& aRegion);
|
||
|
|
||
|
virtual void EndUpdate();
|
||
|
|
||
|
virtual bool DirectUpdate(gfxASurface* aSurf, const nsIntRegion& aRegion, const nsIntPoint& aFrom /* = nsIntPoint(0, 0) */);
|
||
|
|
||
|
virtual void BindTexture(GLenum aTextureUnit);
|
||
|
|
||
|
virtual GLuint GetTextureID()
|
||
|
{
|
||
|
// Ensure the texture is allocated before it is used.
|
||
|
if (mTextureState == Created) {
|
||
|
Resize(mSize);
|
||
|
}
|
||
|
return mTexture;
|
||
|
};
|
||
|
|
||
|
virtual bool InUpdate() const { return !!mUpdateSurface; }
|
||
|
|
||
|
virtual void Resize(const nsIntSize& aSize);
|
||
|
|
||
|
bool BindTexImage();
|
||
|
|
||
|
bool ReleaseTexImage();
|
||
|
|
||
|
virtual bool CreateEGLSurface(gfxASurface* aSurface)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
virtual void DestroyEGLSurface(void);
|
||
|
|
||
|
protected:
|
||
|
typedef gfxImageFormat ImageFormat;
|
||
|
|
||
|
GLContext* mGLContext;
|
||
|
|
||
|
nsIntRect mUpdateRect;
|
||
|
ImageFormat mUpdateFormat;
|
||
|
nsRefPtr<gfxASurface> mUpdateSurface;
|
||
|
EGLImage mEGLImage;
|
||
|
GLuint mTexture;
|
||
|
EGLSurface mSurface;
|
||
|
EGLConfig mConfig;
|
||
|
TextureState mTextureState;
|
||
|
|
||
|
bool mBound;
|
||
|
|
||
|
virtual void ApplyFilter();
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // TEXTUREIMAGEEGL_H_
|