Revision: 201016 RCL_3 PDK_3.0.i
authorDremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 27 Apr 2010 17:34:09 +0300
branchRCL_3
changeset 18 b52e29b42806
parent 15 d240fe32a15c
child 22 9be6eed35a80
Revision: 201016 Kit: 201017
svgtopt/SVG/SVGEngine/inc/SVGContentHandler.h
svgtopt/SVG/SVGEngine/src/SVGContentHandler.cpp
svgtopt/SVGTPlugin/inc/Svgtplugin.h
svgtopt/SVGTPlugin/src/RepositoryVolumeListener.cpp
svgtopt/SVGTPlugin/src/Svgtpluginmain.cpp
svgtopt/SVGTPlugin/src/VolumeKeyListener.cpp
svgtopt/gfx2d/src/GfxGc/Gfx2dGcOpenVG.cpp
--- a/svgtopt/SVG/SVGEngine/inc/SVGContentHandler.h	Wed Apr 14 16:53:18 2010 +0300
+++ b/svgtopt/SVG/SVGEngine/inc/SVGContentHandler.h	Tue Apr 27 17:34:09 2010 +0300
@@ -28,8 +28,8 @@
 #include "SVGAttributeVerifier.h"
 #include "SVGErrorImpl.h"
 
-#include "MXMLAttributes.h"
-#include "MXMLContentHandler.h"
+#include "mxmlattributes.h"
+#include "mxmlcontenthandler.h"
 
 #include "SVGSchemaData.h"
 #include "SVGDocumentImpl.h"
--- a/svgtopt/SVG/SVGEngine/src/SVGContentHandler.cpp	Wed Apr 14 16:53:18 2010 +0300
+++ b/svgtopt/SVG/SVGEngine/src/SVGContentHandler.cpp	Tue Apr 27 17:34:09 2010 +0300
@@ -26,7 +26,7 @@
 
 #include "SVGUseElementImpl.h"
 #include "SVGAnimationElementImpl.h"
-#include "RXMLReader.h"
+#include "rxmlreader.h"
 
 #include "SVGPaintCssValueImpl.h"
 #include "SVGPathElementImpl.h"
--- a/svgtopt/SVGTPlugin/inc/Svgtplugin.h	Wed Apr 14 16:53:18 2010 +0300
+++ b/svgtopt/SVGTPlugin/inc/Svgtplugin.h	Tue Apr 27 17:34:09 2010 +0300
@@ -33,9 +33,9 @@
 #include "SVGListener.h"
 
 #include <npupp.h>
-#include <PluginAdapterInterface.h>
+#include <pluginadapterinterface.h>
 
-#include <CEcomBrowserPluginInterface.h>
+#include <cecombrowserplugininterface.h>
 
 #include "MRepositoryVolumeObserver.h"
 
--- a/svgtopt/SVGTPlugin/src/RepositoryVolumeListener.cpp	Wed Apr 14 16:53:18 2010 +0300
+++ b/svgtopt/SVGTPlugin/src/RepositoryVolumeListener.cpp	Tue Apr 27 17:34:09 2010 +0300
@@ -23,7 +23,7 @@
 #include "RepositoryVolumeListener.h"
 //#include <SharedDataKeys.h> //include this file when KSDUidMediaVolumeControl and KMediaVolume will be needed
 //#include "epocdebug.h"
-#include <BrowserUiSDKCRKeys.h>
+#include <browseruisdkcrkeys.h>
 #include "MRepositoryVolumeObserver.h"
 
 CRepositoryVolumeListener* CRepositoryVolumeListener::NewL(MRepositoryVolumeObserver* aObserver)
--- a/svgtopt/SVGTPlugin/src/Svgtpluginmain.cpp	Wed Apr 14 16:53:18 2010 +0300
+++ b/svgtopt/SVGTPlugin/src/Svgtpluginmain.cpp	Tue Apr 27 17:34:09 2010 +0300
@@ -20,7 +20,7 @@
 
 
 #include <implementationproxy.h>
-#include <CEcomBrowserPluginInterface.h>
+#include <cecombrowserplugininterface.h>
 /***************************************************/
 /**********ECOM STYLE SVGT PLUGIN ENTRY POINTS******/
 /***************************************************/
--- a/svgtopt/SVGTPlugin/src/VolumeKeyListener.cpp	Wed Apr 14 16:53:18 2010 +0300
+++ b/svgtopt/SVGTPlugin/src/VolumeKeyListener.cpp	Tue Apr 27 17:34:09 2010 +0300
@@ -19,7 +19,7 @@
 
 #include <eikapp.h>
 #include <aknconsts.h>
-#include <BrowserUiSDKCRKeys.h>
+#include <browseruisdkcrkeys.h>
 
 #include "VolumeKeyListener.h" 
 #include "MRepositoryVolumeObserver.h"
--- a/svgtopt/gfx2d/src/GfxGc/Gfx2dGcOpenVG.cpp	Wed Apr 14 16:53:18 2010 +0300
+++ b/svgtopt/gfx2d/src/GfxGc/Gfx2dGcOpenVG.cpp	Tue Apr 27 17:34:09 2010 +0300
@@ -2467,7 +2467,8 @@
     buffer = new (ELeave) TUint32[ iColorBufferSize.iWidth *   iColorBufferSize.iHeight ] ;
     
     iVgSurface->PrepareToBindClientBuffer();
-    VGImage vgImage = CreateVGImage( buffer, iColorBufferSize, EColor16MU, ETrue );
+    //VGImage vgImage = CreateVGImage( buffer, iColorBufferSize, EColor16MU, ETrue );
+    VGImage vgImage  = iVgRenderer->vgCreateImage( VG_sRGBA_8888_PRE,iColorBufferSize.iWidth, iColorBufferSize.iHeight, VG_IMAGE_QUALITY_FASTER );
     //Clear VGImage
     VGfloat color[4] = { 1.0f, 1.0f, 1.0f, 0.0f }; 
         iVgRenderer->vgSetfv(VG_CLEAR_COLOR, 4, color);