OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebGLContextEvent
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/html/canvas/
WebGLContextEvent.cpp
27
#include "
WebGLContextEvent
.h"
31
WebGLContextEvent
::
WebGLContextEvent
()
35
WebGLContextEvent
::
WebGLContextEvent
(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
41
WebGLContextEvent
::~
WebGLContextEvent
()
45
void
WebGLContextEvent
::initEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
WebGLContextEvent.h
33
class
WebGLContextEvent
: public Event {
35
static PassRefPtr<
WebGLContextEvent
> create()
37
return adoptRef(new
WebGLContextEvent
);
39
static PassRefPtr<
WebGLContextEvent
> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
41
return adoptRef(new
WebGLContextEvent
(type, canBubble, cancelable, statusMessage));
43
virtual ~
WebGLContextEvent
();
50
WebGLContextEvent
();
51
WebGLContextEvent
(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage);
WebGLContextEvent.idl
29
]
WebGLContextEvent
: Event {
WebGLRenderingContext.cpp
57
#include "
WebGLContextEvent
.h"
373
canvas->dispatchEvent(
WebGLContextEvent
::create(eventNames().webglcontextcreationerrorEvent, false, true, "Could not create a WebGL context."));
[
all
...]
Completed in 46 milliseconds