mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
52 lines
1.2 KiB
C
52 lines
1.2 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 TextureImageCGL_h_
|
||
|
#define TextureImageCGL_h_
|
||
|
|
||
|
#include "GLTextureImage.h"
|
||
|
#include "GLContextTypes.h"
|
||
|
#include "nsAutoPtr.h"
|
||
|
#include "nsSize.h"
|
||
|
|
||
|
class gfxASurface;
|
||
|
|
||
|
namespace mozilla {
|
||
|
namespace gl {
|
||
|
|
||
|
class TextureImageCGL : public BasicTextureImage
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
TextureImageCGL(GLuint aTexture,
|
||
|
const nsIntSize& aSize,
|
||
|
GLenum aWrapMode,
|
||
|
ContentType aContentType,
|
||
|
GLContext* aContext,
|
||
|
TextureImage::Flags aFlags = TextureImage::NoFlags,
|
||
|
TextureImage::ImageFormat aImageFormat = gfxImageFormatUnknown);
|
||
|
|
||
|
~TextureImageCGL();
|
||
|
|
||
|
protected:
|
||
|
already_AddRefed<gfxASurface>
|
||
|
GetSurfaceForUpdate(const gfxIntSize& aSize, ImageFormat aFmt);
|
||
|
|
||
|
bool FinishedSurfaceUpdate();
|
||
|
|
||
|
void FinishedSurfaceUpload();
|
||
|
|
||
|
private:
|
||
|
|
||
|
GLuint mPixelBuffer;
|
||
|
int32_t mPixelBufferSize;
|
||
|
bool mBoundPixelBuffer;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|