Title: [161764] trunk/Source/WebCore
- Revision
- 161764
- Author
- [email protected]
- Date
- 2014-01-11 08:29:08 -0800 (Sat, 11 Jan 2014)
Log Message
Fix use of GL_HALF_FLOAT_ARB on iOS.
* platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:
(WebCore::GraphicsContext3D::texSubImage2D):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (161763 => 161764)
--- trunk/Source/WebCore/ChangeLog 2014-01-11 16:29:06 UTC (rev 161763)
+++ trunk/Source/WebCore/ChangeLog 2014-01-11 16:29:08 UTC (rev 161764)
@@ -1,5 +1,12 @@
2014-01-11 Simon Fraser <[email protected]>
+ Fix use of GL_HALF_FLOAT_ARB on iOS.
+
+ * platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:
+ (WebCore::GraphicsContext3D::texSubImage2D):
+
+2014-01-11 Simon Fraser <[email protected]>
+
Fix build of SourceBufferPrivateAVFObjC.mm on iOS.
* platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm:
Modified: trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp (161763 => 161764)
--- trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp 2014-01-11 16:29:06 UTC (rev 161763)
+++ trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp 2014-01-11 16:29:08 UTC (rev 161764)
@@ -1436,7 +1436,7 @@
{
makeContextCurrent();
-#if !USE(OPENGL_ES_2)
+#if !PLATFORM(IOS) && !USE(OPENGL_ES_2)
if (type == HALF_FLOAT_OES)
type = GL_HALF_FLOAT_ARB;
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes