OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebGLActiveInfo
(Results
1 - 7
of
7
) sorted by null
/external/webkit/WebCore/html/canvas/
WebGLActiveInfo.h
35
class
WebGLActiveInfo
: public RefCounted<
WebGLActiveInfo
> {
37
static PassRefPtr<
WebGLActiveInfo
> create(const String& name, unsigned type, int size)
39
return adoptRef(new
WebGLActiveInfo
(name, type, size));
46
WebGLActiveInfo
(const String& name, unsigned type, int size)
WebGLActiveInfo.idl
31
]
WebGLActiveInfo
{
WebGLRenderingContext.h
40
class
WebGLActiveInfo
;
131
PassRefPtr<
WebGLActiveInfo
> getActiveAttrib(WebGLProgram*, unsigned long index, ExceptionCode&);
132
PassRefPtr<
WebGLActiveInfo
> getActiveUniform(WebGLProgram*, unsigned long index, ExceptionCode&);
WebGLRenderingContext.cpp
40
#include "
WebGLActiveInfo
.h"
826
PassRefPtr<
WebGLActiveInfo
> WebGLRenderingContext::getActiveAttrib(WebGLProgram* program, unsigned long index, ExceptionCode& ec)
837
return
WebGLActiveInfo
::create(info.name, info.type, info.size);
840
PassRefPtr<
WebGLActiveInfo
> WebGLRenderingContext::getActiveUniform(WebGLProgram* program, unsigned long index, ExceptionCode& ec)
851
return
WebGLActiveInfo
::create(info.name, info.type, info.size);
[
all
...]
WebGLRenderingContext.idl
532
WebGLActiveInfo
getActiveAttrib(in WebGLProgram program, in unsigned long index)
534
WebGLActiveInfo
getActiveUniform(in WebGLProgram program, in unsigned long index)
[
all
...]
/external/webkit/WebCore/platform/graphics/
GraphicsContext3D.h
55
class
WebGLActiveInfo
;
/external/webkit/WebCore/bindings/v8/
V8Index.h
473
V(
WEBGLACTIVEINFO
,
WebGLActiveInfo
) \
[
all
...]
Completed in 309 milliseconds