Home
last modified time | relevance | path

Searched refs:GC3Dboolean (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsContext3D.h233 void colorMask(GC3Dboolean red, GC3Dboolean green, GC3Dboolean blue, GC3Dboolean alpha);
242 void depthMask(GC3Dboolean flag);
263 void getBooleanv(GC3Denum pname, GC3Dboolean* value);
288 GC3Dboolean isBuffer(Platform3DObject);
289 GC3Dboolean isEnabled(GC3Denum cap);
290 GC3Dboolean isFramebuffer(Platform3DObject);
291 GC3Dboolean isProgram(Platform3DObject);
292 GC3Dboolean isRenderbuffer(Platform3DObject);
293 GC3Dboolean isShader(Platform3DObject);
294 GC3Dboolean isTexture(Platform3DObject);
[all …]
DGraphicsContext3D.cpp321 DELEGATE_TO_WEBCONTEXT_4(colorMask, GC3Dboolean, GC3Dboolean, GC3Dboolean, GC3Dboolean) in DELEGATE_TO_WEBCONTEXT_4()
330 DELEGATE_TO_WEBCONTEXT_1(depthMask, GC3Dboolean) in DELEGATE_TO_WEBCONTEXT_4()
376 DELEGATE_TO_WEBCONTEXT_2(getBooleanv, GC3Denum, GC3Dboolean*) in DELEGATE_TO_WEBCONTEXT_2() argument
420 DELEGATE_TO_WEBCONTEXT_1R(isBuffer, Platform3DObject, GC3Dboolean) in DELEGATE_TO_WEBCONTEXT_3()
421 DELEGATE_TO_WEBCONTEXT_1R(isEnabled, GC3Denum, GC3Dboolean) in DELEGATE_TO_WEBCONTEXT_3()
422 DELEGATE_TO_WEBCONTEXT_1R(isFramebuffer, Platform3DObject, GC3Dboolean) in DELEGATE_TO_WEBCONTEXT_3()
423 DELEGATE_TO_WEBCONTEXT_1R(isProgram, Platform3DObject, GC3Dboolean) in DELEGATE_TO_WEBCONTEXT_3()
424 DELEGATE_TO_WEBCONTEXT_1R(isRenderbuffer, Platform3DObject, GC3Dboolean) in DELEGATE_TO_WEBCONTEXT_3()
425 DELEGATE_TO_WEBCONTEXT_1R(isShader, Platform3DObject, GC3Dboolean) in DELEGATE_TO_WEBCONTEXT_3()
426 DELEGATE_TO_WEBCONTEXT_1R(isTexture, Platform3DObject, GC3Dboolean) in DELEGATE_TO_WEBCONTEXT_3()
[all …]
DExtensions3D.h255 GC3Dboolean isVertexArrayOES(Platform3DObject);
298 GC3Dboolean isQueryEXT(Platform3DObject);
DGraphicsTypes3D.h35 typedef unsigned char GC3Dboolean; typedef
DExtensions3D.cpp106 GC3Dboolean Extensions3D::isVertexArrayOES(Platform3DObject array) in isVertexArrayOES()
151 GC3Dboolean Extensions3D::isQueryEXT(Platform3DObject query) in isQueryEXT()
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DWebGLRenderingContext.h123 void colorMask(GC3Dboolean red, GC3Dboolean green, GC3Dboolean blue, GC3Dboolean alpha);
151 void depthMask(GC3Dboolean);
196 GC3Dboolean isBuffer(WebGLBuffer*);
198 GC3Dboolean isEnabled(GC3Denum cap);
199 GC3Dboolean isFramebuffer(WebGLFramebuffer*);
200 GC3Dboolean isProgram(WebGLProgram*);
201 GC3Dboolean isRenderbuffer(WebGLRenderbuffer*);
202 GC3Dboolean isShader(WebGLShader*);
203 GC3Dboolean isTexture(WebGLTexture*);
211 void sampleCoverage(GC3Dfloat value, GC3Dboolean invert);
[all …]
DOESVertexArrayObject.h50 GC3Dboolean isVertexArrayOES(WebGLVertexArrayObjectOES*);
DWebGLVertexArrayObjectOES.h83 …void setVertexAttribState(GC3Duint, GC3Dsizei, GC3Dint, GC3Denum, GC3Dboolean, GC3Dsizei, GC3Dintp…
DOESVertexArrayObject.cpp79 GC3Dboolean OESVertexArrayObject::isVertexArrayOES(WebGLVertexArrayObjectOES* arrayObject) in isVertexArrayOES()
DWebGLRenderingContext.cpp1370 void WebGLRenderingContext::colorMask(GC3Dboolean red, GC3Dboolean green, GC3Dboolean blue, GC3Dboo… in colorMask()
1717 void WebGLRenderingContext::depthMask(GC3Dboolean flag) in depthMask()
2904 GC3Dboolean WebGLRenderingContext::isBuffer(WebGLBuffer* buffer) in isBuffer()
2920 GC3Dboolean WebGLRenderingContext::isEnabled(GC3Denum cap) in isEnabled()
2929 GC3Dboolean WebGLRenderingContext::isFramebuffer(WebGLFramebuffer* framebuffer) in isFramebuffer()
2940 GC3Dboolean WebGLRenderingContext::isProgram(WebGLProgram* program) in isProgram()
2948 GC3Dboolean WebGLRenderingContext::isRenderbuffer(WebGLRenderbuffer* renderbuffer) in isRenderbuffer()
2959 GC3Dboolean WebGLRenderingContext::isShader(WebGLShader* shader) in isShader()
2967 GC3Dboolean WebGLRenderingContext::isTexture(WebGLTexture* texture) in isTexture()
3172 void WebGLRenderingContext::sampleCoverage(GC3Dfloat value, GC3Dboolean invert) in sampleCoverage()
[all …]
DWebGLVertexArrayObjectOES.cpp96 …GC3Duint index, GC3Dsizei bytesPerElement, GC3Dint size, GC3Denum type, GC3Dboolean normalized, GC… in setVertexAttribState()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DMockWebGraphicsContext3D.h282 virtual GC3Dboolean isQueryEXT(WebGLId) { return true; } in isQueryEXT()