From 54db59c3594e887a412a24713fc3daa1c2404593 Mon Sep 17 00:00:00 2001 From: Jason Sams Date: Thu, 13 May 2010 18:30:11 -0700 Subject: Rename ProgramFragmentStore to ProgramStore. Change-Id: Ia8ad9ac856944838ced38a2f1e8f07387050bdfd --- libs/rs/rsContext.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libs/rs/rsContext.cpp') diff --git a/libs/rs/rsContext.cpp b/libs/rs/rsContext.cpp index 017500ba6f6d..f802a7f98a16 100644 --- a/libs/rs/rsContext.cpp +++ b/libs/rs/rsContext.cpp @@ -131,7 +131,7 @@ uint32_t Context::runScript(Script *s, uint32_t launchID) { ObjectBaseRef frag(mFragment); ObjectBaseRef vtx(mVertex); - ObjectBaseRef store(mFragmentStore); + ObjectBaseRef store(mFragmentStore); ObjectBaseRef raster(mRaster); uint32_t ret = s->run(this, launchID); @@ -582,7 +582,7 @@ void Context::setRootScript(Script *s) mRootScript.set(s); } -void Context::setFragmentStore(ProgramFragmentStore *pfs) +void Context::setFragmentStore(ProgramStore *pfs) { rsAssert(mIsGraphicsContext); if (pfs == NULL) { @@ -806,9 +806,9 @@ void rsi_ContextBindSampler(Context *rsc, uint32_t slot, RsSampler vs) s->bindToContext(&rsc->mStateSampler, slot); } -void rsi_ContextBindProgramFragmentStore(Context *rsc, RsProgramFragmentStore vpfs) +void rsi_ContextBindProgramStore(Context *rsc, RsProgramStore vpfs) { - ProgramFragmentStore *pfs = static_cast(vpfs); + ProgramStore *pfs = static_cast(vpfs); rsc->setFragmentStore(pfs); } -- cgit v1.2.3-59-g8ed1b