aboutsummaryrefslogtreecommitdiffhomepage
path: root/gpu/include/GrGpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'gpu/include/GrGpu.h')
-rw-r--r--gpu/include/GrGpu.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/gpu/include/GrGpu.h b/gpu/include/GrGpu.h
index 5cb885a7ef..34ddccf517 100644
--- a/gpu/include/GrGpu.h
+++ b/gpu/include/GrGpu.h
@@ -253,7 +253,14 @@ public:
*/
bool npotRenderTargetSupport() const { return fNPOTRenderTargetSupport; }
- int maxTextureDimension() const { return fMaxTextureDimension; }
+ /**
+ * Gets the largest allowed width and height of a texture.
+ */
+ int maxTextureSize() const { return fMaxTextureSize; }
+ /**
+ * Gets the largest allowed width and height of a render target.
+ */
+ int maxRenderTargetSize() const { return fMaxRenderTargetSize; }
// GrDrawTarget overrides
virtual void drawIndexed(GrPrimitiveType type,
@@ -404,7 +411,8 @@ protected:
// set by subclass
int fMinRenderTargetWidth;
int fMinRenderTargetHeight;
- int fMaxTextureDimension;
+ int fMaxRenderTargetSize;
+ int fMaxTextureSize;
GrGpuStats fStats;