Bug 180050

Summary: Implement OffscreenCanvas.getContext("webgl")
Product: WebKit Reporter: Dean Jackson <dino>
Component: CanvasAssignee: Dean Jackson <dino>
Status: RESOLVED FIXED    
Severity: Normal CC: cdumez, dino, esprehn+autocc, ews-watchlist, graouts, gyuyoung.kim, hi, joepeck, kondapallykalyan, sam, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch sam: review+

Description Dean Jackson 2017-11-27 13:04:45 PST
Implement OffscreenCanvas.getContext("webgl")
Comment 1 Radar WebKit Bug Importer 2017-11-27 13:07:10 PST
<rdar://problem/35705473>
Comment 2 Dean Jackson 2017-11-27 13:18:12 PST
Created attachment 327666 [details]
Patch
Comment 3 Sam Weinig 2017-11-27 13:32:17 PST
Comment on attachment 327666 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=327666&action=review

> Source/WebCore/html/OffscreenCanvas.cpp:81
> +    if (m_context)
> +        return { RefPtr<WebGLRenderingContext> { &downcast<WebGLRenderingContext>(*m_context) } };

I think this should only return m_context if contextType == RenderingContextType::Webgl. Otherwise, it should be nullptr.
Comment 4 Dean Jackson 2017-11-27 14:13:07 PST
Committed r225193: <https://trac.webkit.org/changeset/225193>