From 331bf9b14b1c5c1e88f5c4092b6e24fae887fb3b Mon Sep 17 00:00:00 2001 From: Jason Sams Date: Wed, 6 Apr 2011 11:23:54 -0700 Subject: Seperate ProgramRaster. Cleanup ProgramRaster and ProgramStore creation. Change-Id: If25ea74355238d405340f0ccfb8117ad6e1307b7 --- libs/rs/rsContext.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libs/rs/rsContext.cpp') diff --git a/libs/rs/rsContext.cpp b/libs/rs/rsContext.cpp index d727ba1daaaa..c9a706090d26 100644 --- a/libs/rs/rsContext.cpp +++ b/libs/rs/rsContext.cpp @@ -405,16 +405,16 @@ bool Context::setupCheck() { return false; } - mFragmentStore->setupGL2(this, &mStateFragmentStore); + mFragmentStore->setup(this, &mStateFragmentStore); mFragment->setupGL2(this, &mStateFragment, &mShaderCache); - mRaster->setupGL2(this, &mStateRaster); + mRaster->setup(this, &mStateRaster); mVertex->setupGL2(this, &mStateVertex, &mShaderCache); mFBOCache.setupGL2(this); return true; } void Context::setupProgramStore() { - mFragmentStore->setupGL2(this, &mStateFragmentStore); + mFragmentStore->setup(this, &mStateFragmentStore); } static bool getProp(const char *str) { -- cgit v1.2.3-59-g8ed1b