From 706f66831a575bdc2b1ab1331b48b793cd487356 Mon Sep 17 00:00:00 2001 From: "bsalomon@google.com" Date: Tue, 23 Oct 2012 14:53:55 +0000 Subject: Reland r6330 thru r6333 but do without enabling GL_ARB_fragment_coord_conventions on Intel GPUs. git-svn-id: http://skia.googlecode.com/svn/trunk@6048 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/gpu/gl/GrGLCaps.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/gpu/gl/GrGLCaps.h') diff --git a/src/gpu/gl/GrGLCaps.h b/src/gpu/gl/GrGLCaps.h index 1cc50c2220..9dfbf23cb4 100644 --- a/src/gpu/gl/GrGLCaps.h +++ b/src/gpu/gl/GrGLCaps.h @@ -216,6 +216,9 @@ public: /// Is GL_ARB_IMAGING supported bool imagingSupport() const { return fImagingSupport; } + /// Is GL_ARB_fragment_coord_conventions supported? + bool fragCoordConventionsSupport() const { return fFragCoordsConventionSupport; } + // Does ReadPixels support the provided format/type combo? bool readPixelsSupported(const GrGLInterface* intf, GrGLenum format, @@ -293,6 +296,7 @@ private: bool fTextureRedSupport : 1; bool fImagingSupport : 1; bool fTwoFormatLimit : 1; + bool fFragCoordsConventionSupport : 1; }; #endif -- cgit v1.2.3