aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-28 20:16:25 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-28 20:16:25 +0000
commit6177e6999d23a4268ffd98dedfb1da00e272a89b (patch)
treeaeadfad9da388e124819af0f3e51bec543cfaa9a /tests
parent26fb61ae464d9dfeabb4824663cdde379ae87829 (diff)
Split GrGLContextInfo into GrGLContext & GrGLContextInfo
Diffstat (limited to 'tests')
-rw-r--r--tests/GLProgramsTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/GLProgramsTest.cpp b/tests/GLProgramsTest.cpp
index 3c9af5c98f..45c5f2d162 100644
--- a/tests/GLProgramsTest.cpp
+++ b/tests/GLProgramsTest.cpp
@@ -138,7 +138,7 @@ bool GrGpuGL::programUnitTest(int maxStages) {
for (int s = 0; s < GrDrawState::kNumStages; ++s) {
stagePtrs[s] = &stages[s];
}
- SkAutoTUnref<GrGLProgram> program(GrGLProgram::Create(this->glContextInfo(),
+ SkAutoTUnref<GrGLProgram> program(GrGLProgram::Create(this->glContext(),
pdesc,
stagePtrs));
if (NULL == program.get()) {