From 69c1b24bcaa7cffd59753a75a7f3d155696fcac4 Mon Sep 17 00:00:00 2001 From: cdalton Date: Tue, 23 Feb 2016 13:38:47 -0800 Subject: Include glGetMultisamplefv API BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1720963002 Review URL: https://codereview.chromium.org/1720963002 --- include/gpu/GrCaps.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/gpu/GrCaps.h') diff --git a/include/gpu/GrCaps.h b/include/gpu/GrCaps.h index e2e44a5120..60f213950e 100644 --- a/include/gpu/GrCaps.h +++ b/include/gpu/GrCaps.h @@ -144,6 +144,7 @@ public: bool compressedTexSubImageSupport() const { return fCompressedTexSubImageSupport; } bool oversizedStencilSupport() const { return fOversizedStencilSupport; } bool textureBarrierSupport() const { return fTextureBarrierSupport; } + bool sampleLocationsSupport() const { return fSampleLocationsSupport; } bool usesMixedSamples() const { return fUsesMixedSamples; } bool useDrawInsteadOfClear() const { return fUseDrawInsteadOfClear; } @@ -276,6 +277,7 @@ protected: bool fCompressedTexSubImageSupport : 1; bool fOversizedStencilSupport : 1; bool fTextureBarrierSupport : 1; + bool fSampleLocationsSupport : 1; bool fUsesMixedSamples : 1; bool fSupportsInstancedDraws : 1; bool fFullClearIsFree : 1; -- cgit v1.2.3