OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is3d
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCanvasElement.cpp
191
if (m_context && !m_context->
is3d
())
268
if (m_context && m_context->
is3d
() && oldSize != size())
327
if (
is3D
())
331
bool HTMLCanvasElement::
is3D
() const
333
return m_context && m_context->
is3d
();
396
if (!m_context || !m_context->
is3d
())
433
if (
is3D
())
474
if (
is3D
()) {
HTMLCanvasElement.h
121
bool
is3D
() const;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CanvasRenderingContextCustom.cpp
45
if (impl->
is3d
())
V8HTMLCanvasElementCustom.cpp
115
if (result->
is3d
()) {
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext.h
56
virtual bool
is3d
() const { return false; }
function in class:WebCore::CanvasRenderingContext
WebGLRenderingContext.h
93
virtual bool
is3d
() const { return true; }
function in class:WebCore::WebGLRenderingContext
[
all
...]
CanvasRenderingContext2D.cpp
[
all
...]
WebGLRenderingContext.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
ImageBitmap.cpp
85
if (sourceContext && sourceContext->
is3d
())
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
CurvesHelper.java
66
boolean
is3D
= (flag & 0x01) != 0;
67
boolean isFront = (flag & 0x02) != 0 && !
is3D
;
68
boolean isBack = (flag & 0x04) != 0 && !
is3D
;
Completed in 369 milliseconds