2013-12-03 22:44:38 +04:00
|
|
|
/* -*- 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 TextureImageCGL_h_
|
|
|
|
#define TextureImageCGL_h_
|
|
|
|
|
|
|
|
#include "GLTextureImage.h"
|
|
|
|
#include "GLContextTypes.h"
|
|
|
|
#include "nsSize.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gl {
|
|
|
|
|
|
|
|
class TextureImageCGL : public BasicTextureImage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
TextureImageCGL(GLuint aTexture,
|
2015-05-29 14:59:26 +03:00
|
|
|
const gfx::IntSize& aSize,
|
2013-12-03 22:44:38 +04:00
|
|
|
GLenum aWrapMode,
|
|
|
|
ContentType aContentType,
|
|
|
|
GLContext* aContext,
|
2016-01-13 10:10:56 +03:00
|
|
|
TextureImage::Flags aFlags = TextureImage::NoFlags);
|
2013-12-03 22:44:38 +04:00
|
|
|
|
|
|
|
~TextureImageCGL();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool FinishedSurfaceUpdate();
|
|
|
|
|
|
|
|
void FinishedSurfaceUpload();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
GLuint mPixelBuffer;
|
|
|
|
bool mBoundPixelBuffer;
|
|
|
|
};
|
|
|
|
|
2013-12-03 22:44:38 +04:00
|
|
|
already_AddRefed<TextureImage>
|
2016-06-11 04:37:07 +03:00
|
|
|
CreateTextureImageCGL(GLContext* gl,
|
2013-12-13 21:32:06 +04:00
|
|
|
const gfx::IntSize& aSize,
|
2013-12-03 22:44:38 +04:00
|
|
|
TextureImage::ContentType aContentType,
|
|
|
|
GLenum aWrapMode,
|
|
|
|
TextureImage::Flags aFlags,
|
|
|
|
TextureImage::ImageFormat aImageFormat);
|
|
|
|
|
|
|
|
already_AddRefed<TextureImage>
|
2016-06-11 04:37:07 +03:00
|
|
|
TileGenFuncCGL(GLContext* gl,
|
2015-05-29 14:59:26 +03:00
|
|
|
const gfx::IntSize& aSize,
|
2013-12-03 22:44:38 +04:00
|
|
|
TextureImage::ContentType aContentType,
|
2016-01-13 10:10:56 +03:00
|
|
|
TextureImage::Flags aFlags);
|
2013-12-03 22:44:38 +04:00
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gl
|
|
|
|
} // namespace mozilla
|
2013-12-03 22:44:38 +04:00
|
|
|
|
|
|
|
#endif
|