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

Commit 1e373dd

Browse files
ds-hwangdarktears
authored andcommitted
[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 dd7006a commit 1e373dd

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
@@ -102,6 +102,9 @@ PassRefPtr<DrawingBuffer> DrawingBuffer::create(PassOwnPtr<WebGraphicsContext3D>
102102
extensionsUtil->ensureExtensionEnabled("GL_OES_rgb8_rgba8");
103103
}
104104
bool packedDepthStencilSupported = extensionsUtil->supportsExtension("GL_OES_packed_depth_stencil");
105+
#if defined(OS_TIZEN) && CPU(X86)
106+
multisampleSupported = false;
107+
#endif
105108
if (packedDepthStencilSupported)
106109
extensionsUtil->ensureExtensionEnabled("GL_OES_packed_depth_stencil");
107110

0 commit comments

Comments
 (0)