Chromium Code Reviews| Index: include/gpu/GrDrawContext.h |
| diff --git a/include/gpu/GrDrawContext.h b/include/gpu/GrDrawContext.h |
| index c4818e5d71df537e141a3c4377f4ac6c9527321a..5dd1a087beabf7eaab215f5d203b22378edf9a4e 100644 |
| --- a/include/gpu/GrDrawContext.h |
| +++ b/include/gpu/GrDrawContext.h |
| @@ -9,6 +9,7 @@ |
| #define GrDrawContext_DEFINED |
| #include "GrColor.h" |
| +#include "GrContext.h" |
| #include "GrRenderTarget.h" |
| #include "SkRefCnt.h" |
| #include "SkRegion.h" |
| @@ -264,6 +265,7 @@ public: |
| bool isUnifiedMultisampled() const { return fRenderTarget->isUnifiedMultisampled(); } |
| bool hasMixedSamples() const { return fRenderTarget->hasMixedSamples(); } |
| + const GrCaps* caps() const { return fContext->caps(); } |
|
bsalomon
2016/06/07 19:32:09
IIRC, Rob is fairly adamant that we don't expose c
|
| const GrSurfaceDesc& desc() const { return fRenderTarget->desc(); } |
| int width() const { return fRenderTarget->width(); } |
| int height() const { return fRenderTarget->height(); } |