Title: [131796] trunk/Source/WebCore
Revision
131796
Author
commit-qu...@webkit.org
Date
2012-10-18 13:18:00 -0700 (Thu, 18 Oct 2012)

Log Message

[EFL] GraphicsContext3D::m_renderStyle is not initialized
https://bugs.webkit.org/show_bug.cgi?id=99721

Patch by Yael Aharon <yael.aha...@intel.com> on 2012-10-18
Reviewed by Antonio Gomes.

Initialize GraphicsContext3D::m_renderStyle.

No new tests, no new functionality.

* platform/graphics/efl/GraphicsContext3DEfl.cpp:
(WebCore::GraphicsContext3D::GraphicsContext3D):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (131795 => 131796)


--- trunk/Source/WebCore/ChangeLog	2012-10-18 20:12:20 UTC (rev 131795)
+++ trunk/Source/WebCore/ChangeLog	2012-10-18 20:18:00 UTC (rev 131796)
@@ -1,3 +1,17 @@
+2012-10-18  Yael Aharon  <yael.aha...@intel.com>
+
+        [EFL] GraphicsContext3D::m_renderStyle is not initialized
+        https://bugs.webkit.org/show_bug.cgi?id=99721
+
+        Reviewed by Antonio Gomes.
+
+        Initialize GraphicsContext3D::m_renderStyle.
+
+        No new tests, no new functionality.
+
+        * platform/graphics/efl/GraphicsContext3DEfl.cpp:
+        (WebCore::GraphicsContext3D::GraphicsContext3D):
+
 2012-10-18  Brian White  <bcwh...@chromium.org>
 
         WebKit Doesn't Recognize Content-Language HTTP Header

Modified: trunk/Source/WebCore/platform/graphics/efl/GraphicsContext3DEfl.cpp (131795 => 131796)


--- trunk/Source/WebCore/platform/graphics/efl/GraphicsContext3DEfl.cpp	2012-10-18 20:12:20 UTC (rev 131795)
+++ trunk/Source/WebCore/platform/graphics/efl/GraphicsContext3DEfl.cpp	2012-10-18 20:18:00 UTC (rev 131796)
@@ -48,6 +48,7 @@
     , m_currentHeight(0)
     , m_compiler(isGLES2Compliant() ? SH_ESSL_OUTPUT : SH_GLSL_OUTPUT)
     , m_attrs(attrs)
+    , m_renderStyle(renderStyle)
     , m_texture(0)
     , m_compositorTexture(0)
     , m_fbo(0)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to