c64865fcd7158cfcecd81c97a3c1785603bc92be
[platform/upstream/libSkiaSharp.git] / src / gpu / gl / GrGLTexture.h
1 /*
2  * Copyright 2011 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7
8
9 #ifndef GrGLTexture_DEFINED
10 #define GrGLTexture_DEFINED
11
12 #include "GrGpu.h"
13 #include "GrTexture.h"
14 #include "GrGLUtil.h"
15
16
17 class GrGLTexture : public GrTexture {
18
19 public:
20     struct TexParams {
21         GrGLenum fMinFilter;
22         GrGLenum fMagFilter;
23         GrGLenum fWrapS;
24         GrGLenum fWrapT;
25         GrGLenum fSwizzleRGBA[4];
26         void invalidate() { memset(this, 0xff, sizeof(TexParams)); }
27     };
28
29     struct IDDesc {
30         GrGLuint                    fTextureID;
31         GrGpuResource::LifeCycle    fLifeCycle;
32     };
33
34     GrGLTexture(GrGLGpu*, const GrSurfaceDesc&, const IDDesc&);
35
36     GrBackendObject getTextureHandle() const SK_OVERRIDE;
37
38     void textureParamsModified() SK_OVERRIDE { fTexParams.invalidate(); }
39
40     // These functions are used to track the texture parameters associated with the texture.
41     const TexParams& getCachedTexParams(GrGpu::ResetTimestamp* timestamp) const {
42         *timestamp = fTexParamsTimestamp;
43         return fTexParams;
44     }
45
46     void setCachedTexParams(const TexParams& texParams,
47                             GrGpu::ResetTimestamp timestamp) {
48         fTexParams = texParams;
49         fTexParamsTimestamp = timestamp;
50     }
51
52     GrGLuint textureID() const { return fTextureID; }
53
54 protected:
55     // The public constructor registers this object with the cache. However, only the most derived
56     // class should register with the cache. This constructor does not do the registration and
57     // rather moves that burden onto the derived class.
58     enum Derived { kDerived };
59     GrGLTexture(GrGLGpu*, const GrSurfaceDesc&, const IDDesc&, Derived);
60
61     void init(const GrSurfaceDesc&, const IDDesc&);
62
63     void onAbandon() SK_OVERRIDE;
64     void onRelease() SK_OVERRIDE;
65
66 private:
67     TexParams                       fTexParams;
68     GrGpu::ResetTimestamp           fTexParamsTimestamp;
69     GrGLuint                        fTextureID;
70
71     // We track this separately from GrGpuResource because this may be both a texture and a render
72     // target, and the texture may be wrapped while the render target is not.
73     bool fIsWrapped;
74
75     typedef GrTexture INHERITED;
76 };
77
78 #endif