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

Commit

Permalink
[TEMP][IVI] WebGL: Turn off MSAA.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ds-hwang authored and darktears committed Sep 19, 2014
1 parent 43aff83 commit bc7b6c1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/platform/graphics/gpu/DrawingBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ PassRefPtr<DrawingBuffer> DrawingBuffer::create(PassOwnPtr<WebGraphicsContext3D>
extensionsUtil->ensureExtensionEnabled("GL_OES_rgb8_rgba8");
}
bool packedDepthStencilSupported = extensionsUtil->supportsExtension("GL_OES_packed_depth_stencil");
#if defined(OS_TIZEN) && CPU(X86)
multisampleSupported = false;
#endif
if (packedDepthStencilSupported)
extensionsUtil->ensureExtensionEnabled("GL_OES_packed_depth_stencil");

Expand Down

0 comments on commit bc7b6c1

Please sign in to comment.