Skip to content
This repository was archived by the owner on Apr 3, 2020. It is now read-only.

Commit ed2bae8

Browse files
ds-hwangRaphael Kubo da Costa
authored and
Raphael Kubo da Costa
committed
[TEMP][IVI] WebGL: Turn off MSAA.
MSAA is disabled for now and will be enabled once known issues are fixed for IVI. BUG=https://crosswalk-project.org/jira/browse/XWALK-1113
1 parent 30361fa commit ed2bae8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Source/platform/graphics/gpu/DrawingBuffer.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ PassRefPtr<DrawingBuffer> DrawingBuffer::create(PassOwnPtr<WebGraphicsContext3D>
100100
extensionsUtil->ensureExtensionEnabled("GL_OES_rgb8_rgba8");
101101
}
102102
bool packedDepthStencilSupported = extensionsUtil->supportsExtension("GL_OES_packed_depth_stencil");
103+
#if defined(OS_TIZEN) && CPU(X86)
104+
multisampleSupported = false;
105+
#endif
103106
if (packedDepthStencilSupported)
104107
extensionsUtil->ensureExtensionEnabled("GL_OES_packed_depth_stencil");
105108

0 commit comments

Comments
 (0)