HomeSort by relevance Sort by last modified time
    Searched refs:jsAttrs (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/bindings/js/
JSHTMLCanvasElementCustom.cpp 62 JSObject* jsAttrs = args.at(1).getObject();
64 if (jsAttrs->hasProperty(exec, alpha))
65 webGLAttrs->setAlpha(jsAttrs->get(exec, alpha).toBoolean(exec));
67 if (jsAttrs->hasProperty(exec, depth))
68 webGLAttrs->setDepth(jsAttrs->get(exec, depth).toBoolean(exec));
70 if (jsAttrs->hasProperty(exec, stencil))
71 webGLAttrs->setStencil(jsAttrs->get(exec, stencil).toBoolean(exec));
73 if (jsAttrs->hasProperty(exec, antialias))
74 webGLAttrs->setAntialias(jsAttrs->get(exec, antialias).toBoolean(exec));
76 if (jsAttrs->hasProperty(exec, premultipliedAlpha)
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp 58 v8::Handle<v8::Object> jsAttrs = args[1]->ToObject();
60 if (jsAttrs->Has(alpha))
61 webGLAttrs->setAlpha(jsAttrs->Get(alpha)->BooleanValue());
63 if (jsAttrs->Has(depth))
64 webGLAttrs->setDepth(jsAttrs->Get(depth)->BooleanValue());
66 if (jsAttrs->Has(stencil))
67 webGLAttrs->setStencil(jsAttrs->Get(stencil)->BooleanValue());
69 if (jsAttrs->Has(antialias))
70 webGLAttrs->setAntialias(jsAttrs->Get(antialias)->BooleanValue());
72 if (jsAttrs->Has(premultipliedAlpha)
    [all...]

Completed in 37 milliseconds