OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:webGLAttrs
(Results
1 - 2
of
2
) sorted by null
/external/webkit/WebCore/bindings/js/
JSHTMLCanvasElementCustom.cpp
60
WebGLContextAttributes*
webGLAttrs
= static_cast<WebGLContextAttributes*>(attrs.get());
65
webGLAttrs
->setAlpha(jsAttrs->get(exec, alpha).toBoolean(exec));
68
webGLAttrs
->setDepth(jsAttrs->get(exec, depth).toBoolean(exec));
71
webGLAttrs
->setStencil(jsAttrs->get(exec, stencil).toBoolean(exec));
74
webGLAttrs
->setAntialias(jsAttrs->get(exec, antialias).toBoolean(exec));
77
webGLAttrs
->setPremultipliedAlpha(jsAttrs->get(exec, premultipliedAlpha).toBoolean(exec));
/external/webkit/WebCore/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp
56
WebGLContextAttributes*
webGLAttrs
= static_cast<WebGLContextAttributes*>(attrs.get());
61
webGLAttrs
->setAlpha(jsAttrs->Get(alpha)->BooleanValue());
64
webGLAttrs
->setDepth(jsAttrs->Get(depth)->BooleanValue());
67
webGLAttrs
->setStencil(jsAttrs->Get(stencil)->BooleanValue());
70
webGLAttrs
->setAntialias(jsAttrs->Get(antialias)->BooleanValue());
73
webGLAttrs
->setPremultipliedAlpha(jsAttrs->Get(premultipliedAlpha)->BooleanValue());
Completed in 244 milliseconds