diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-08-28 21:11:35 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-08-28 21:11:35 +0000 |
commit | f66018798099750e639a8fa131fece492a050997 (patch) | |
tree | 4238c882198f2050a2e2ab270ae0c89dc1d49ed0 /tests | |
parent | a7e483d130a65833e4c0d4abb4c2f13a9ce7703b (diff) |
Hide GrDrawTarget::Caps's member vars
Review URL: https://codereview.appspot.com/6499044
git-svn-id: http://skia.googlecode.com/svn/trunk@5328 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r-- | tests/GLProgramsTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/GLProgramsTest.cpp b/tests/GLProgramsTest.cpp index fd24518828..c99d66adea 100644 --- a/tests/GLProgramsTest.cpp +++ b/tests/GLProgramsTest.cpp @@ -109,14 +109,14 @@ bool GrGpuGL::programUnitTest() { 0; #if GR_GL_EXPERIMENTAL_GS - pdesc.fExperimentalGS = this->getCaps().fGeometryShaderSupport && + pdesc.fExperimentalGS = this->getCaps().geometryShaderSupport() && random_bool(&random); #endif bool edgeAA = random_bool(&random); if (edgeAA) { pdesc.fVertexLayout |= GrDrawTarget::kEdge_VertexLayoutBit; - if (this->getCaps().fShaderDerivativeSupport) { + if (this->getCaps().shaderDerivativeSupport()) { pdesc.fVertexEdgeType = (GrDrawState::VertexEdgeType) random_int(&random, GrDrawState::kVertexEdgeTypeCnt); } else { pdesc.fVertexEdgeType = GrDrawState::kHairLine_EdgeType; @@ -126,7 +126,7 @@ bool GrGpuGL::programUnitTest() { pdesc.fColorMatrixEnabled = random_bool(&random); - if (this->getCaps().fDualSourceBlendingSupport) { + if (this->getCaps().dualSourceBlendingSupport()) { pdesc.fDualSrcOutput = random_int(&random, ProgramDesc::kDualSrcOutputCnt); } else { pdesc.fDualSrcOutput = ProgramDesc::kNone_DualSrcOutput; |