Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef TextureImageCGL_h_
7 #define TextureImageCGL_h_
9 #include "GLTextureImage.h"
10 #include "GLContextTypes.h"
11 #include "nsAutoPtr.h"
12 #include "nsSize.h"
14 class gfxASurface;
16 namespace mozilla {
17 namespace gl {
19 class TextureImageCGL : public BasicTextureImage
20 {
21 public:
23 TextureImageCGL(GLuint aTexture,
24 const nsIntSize& aSize,
25 GLenum aWrapMode,
26 ContentType aContentType,
27 GLContext* aContext,
28 TextureImage::Flags aFlags = TextureImage::NoFlags,
29 TextureImage::ImageFormat aImageFormat = gfxImageFormat::Unknown);
31 ~TextureImageCGL();
33 protected:
34 already_AddRefed<gfxASurface>
35 GetSurfaceForUpdate(const gfxIntSize& aSize, ImageFormat aFmt);
37 bool FinishedSurfaceUpdate();
39 void FinishedSurfaceUpload();
41 private:
43 GLuint mPixelBuffer;
44 int32_t mPixelBufferSize;
45 bool mBoundPixelBuffer;
46 };
48 already_AddRefed<TextureImage>
49 CreateTextureImageCGL(GLContext *gl,
50 const gfx::IntSize& aSize,
51 TextureImage::ContentType aContentType,
52 GLenum aWrapMode,
53 TextureImage::Flags aFlags,
54 TextureImage::ImageFormat aImageFormat);
56 already_AddRefed<TextureImage>
57 TileGenFuncCGL(GLContext *gl,
58 const nsIntSize& aSize,
59 TextureImage::ContentType aContentType,
60 TextureImage::Flags aFlags,
61 TextureImage::ImageFormat aImageFormat);
63 }
64 }
66 #endif