OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef GrRenderTargetPriv_DEFINED | 8 #ifndef GrRenderTargetPriv_DEFINED |
9 #define GrRenderTargetPriv_DEFINED | 9 #define GrRenderTargetPriv_DEFINED |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 /** | 26 /** |
27 * Attaches the GrStencilAttachment onto the render target. If stencil is a
nullptr then the | 27 * Attaches the GrStencilAttachment onto the render target. If stencil is a
nullptr then the |
28 * currently attached GrStencilAttachment will be removed if one was previou
sly attached. This | 28 * currently attached GrStencilAttachment will be removed if one was previou
sly attached. This |
29 * function returns false if there were any failure in attaching the GrStenc
ilAttachment. | 29 * function returns false if there were any failure in attaching the GrStenc
ilAttachment. |
30 */ | 30 */ |
31 bool attachStencilAttachment(GrStencilAttachment* stencil); | 31 bool attachStencilAttachment(GrStencilAttachment* stencil); |
32 | 32 |
33 const GrGpu::MultisampleSpecs& getMultisampleSpecs(const GrStencilSettings&
stencil) const; | 33 const GrGpu::MultisampleSpecs& getMultisampleSpecs(const GrStencilSettings&
stencil) const; |
34 | 34 |
| 35 GrRenderTarget::SampleConfig sampleConfig() const { return fRenderTarget->fS
ampleConfig; } |
| 36 |
35 private: | 37 private: |
36 explicit GrRenderTargetPriv(GrRenderTarget* renderTarget) : fRenderTarget(re
nderTarget) {} | 38 explicit GrRenderTargetPriv(GrRenderTarget* renderTarget) : fRenderTarget(re
nderTarget) {} |
37 GrRenderTargetPriv(const GrRenderTargetPriv&) {} // unimpl | 39 GrRenderTargetPriv(const GrRenderTargetPriv&) {} // unimpl |
38 GrRenderTargetPriv& operator=(const GrRenderTargetPriv&); // unimpl | 40 GrRenderTargetPriv& operator=(const GrRenderTargetPriv&); // unimpl |
39 | 41 |
40 // No taking addresses of this type. | 42 // No taking addresses of this type. |
41 const GrRenderTargetPriv* operator&() const; | 43 const GrRenderTargetPriv* operator&() const; |
42 GrRenderTargetPriv* operator&(); | 44 GrRenderTargetPriv* operator&(); |
43 | 45 |
44 GrRenderTarget* fRenderTarget; | 46 GrRenderTarget* fRenderTarget; |
45 | 47 |
46 friend class GrRenderTarget; // to construct/copy this type. | 48 friend class GrRenderTarget; // to construct/copy this type. |
47 }; | 49 }; |
48 | 50 |
49 inline GrRenderTargetPriv GrRenderTarget::renderTargetPriv() { return GrRenderTa
rgetPriv(this); } | 51 inline GrRenderTargetPriv GrRenderTarget::renderTargetPriv() { return GrRenderTa
rgetPriv(this); } |
50 | 52 |
51 inline const GrRenderTargetPriv GrRenderTarget::renderTargetPriv () const { | 53 inline const GrRenderTargetPriv GrRenderTarget::renderTargetPriv () const { |
52 return GrRenderTargetPriv(const_cast<GrRenderTarget*>(this)); | 54 return GrRenderTargetPriv(const_cast<GrRenderTarget*>(this)); |
53 } | 55 } |
54 | 56 |
55 #endif | 57 #endif |
OLD | NEW |