# HG changeset patch # User Gareth Stockwell # Date 1285332899 -3600 # Node ID 47632b7dfb880b956c4b4d5cc6128ae89b031d55 # Parent 44a5686bb629b341bdfcdb97d75bfac17b0748a8 Refactoring of frame buffer references to surface buffer diff -r 44a5686bb629 -r 47632b7dfb88 graphicscompositionref/surfacemgrcommon/src/extension.cpp --- a/graphicscompositionref/surfacemgrcommon/src/extension.cpp Mon Aug 16 10:30:34 2010 +0100 +++ b/graphicscompositionref/surfacemgrcommon/src/extension.cpp Fri Sep 24 13:54:59 2010 +0100 @@ -1743,11 +1743,11 @@ TInt DSurfaceManager::CreateMemory() { Kern::Printf("DSurfaceManager::CreateMemory()>"); - TUint32 physicalAddress = DVirtualVideoHwInterface::GetFrameBase(); + TUint32 physicalAddress = DVirtualVideoHwInterface::GetSurfaceBufferBase(); Kern::Printf("DSurfaceManager::CreateMemory: 0x%08x",physicalAddress); if( physicalAddress != 0 ) { - iVHWMemoryManager = new DVirtualHWMemoryManager( physicalAddress, VVI_FRAMEBUFFER_MEMORY_SIZE ); + iVHWMemoryManager = new DVirtualHWMemoryManager( physicalAddress, VVI_SURFACEBUFFER_MEMORY_SIZE ); Kern::Printf("DSurfaceManager::CreateMemory: iVHWMemoryManager: 0x%08x",iVHWMemoryManager); } else