/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
D | WebGLTexture.cpp | 34 PassRefPtr<WebGLTexture> WebGLTexture::create(WebGLRenderingContext* ctx) in create() 36 return adoptRef(new WebGLTexture(ctx)); in create() 39 WebGLTexture::WebGLTexture(WebGLRenderingContext* ctx) in WebGLTexture() function in WebCore::WebGLTexture 57 WebGLTexture::~WebGLTexture() in ~WebGLTexture() 62 void WebGLTexture::setTarget(GC3Denum target, GC3Dint maxLevel) in setTarget() 84 void WebGLTexture::setParameteri(GC3Denum pname, GC3Dint param) in setParameteri() 133 void WebGLTexture::setParameterf(GC3Denum pname, GC3Dfloat param) in setParameterf() 141 void WebGLTexture::setLevelInfo(GC3Denum target, GC3Dint level, GC3Denum internalFormat, GC3Dsizei … in setLevelInfo() 154 void WebGLTexture::generateMipmapLevelInfo() in generateMipmapLevelInfo() 178 GC3Denum WebGLTexture::getInternalFormat(GC3Denum target, GC3Dint level) const in getInternalFormat() [all …]
|
D | WebGLTexture.h | 36 class WebGLTexture : public WebGLSharedObject, public ScriptWrappable { 43 virtual ~WebGLTexture(); 45 static PassRefPtr<WebGLTexture> create(WebGLRenderingContext*); 79 WebGLTexture(WebGLRenderingContext*);
|
D | WebGLGetInfo.h | 90 explicit WebGLGetInfo(PassRefPtr<WebGLTexture> value); 111 PassRefPtr<WebGLTexture> getWebGLTexture() const; 132 RefPtr<WebGLTexture> m_webglTexture;
|
D | WebGLFramebuffer.h | 38 class WebGLTexture; variable 71 …void setAttachmentForBoundFramebuffer(GC3Denum attachment, GC3Denum texTarget, WebGLTexture*, GC3D…
|
D | WebGLFramebuffer.cpp | 158 …static PassRefPtr<WebGLFramebuffer::WebGLAttachment> create(WebGLTexture*, GC3Denum target, GC3Din… 161 WebGLTextureAttachment(WebGLTexture*, GC3Denum target, GC3Dint level); 177 RefPtr<WebGLTexture> m_texture; 182 …PassRefPtr<WebGLFramebuffer::WebGLAttachment> WebGLTextureAttachment::create(WebGLTexture* texture… in create() 187 …WebGLTextureAttachment::WebGLTextureAttachment(WebGLTexture* texture, GC3Denum target, GC3Dint lev… in WebGLTextureAttachment() 301 …ttachmentForBoundFramebuffer(GC3Denum attachment, GC3Denum texTarget, WebGLTexture* texture, GC3Di… in setAttachmentForBoundFramebuffer()
|
D | WebGLRenderingContext.h | 84 class WebGLTexture; variable 105 void bindTexture(GC3Denum target, WebGLTexture*); 139 PassRefPtr<WebGLTexture> createTexture(); 148 void deleteTexture(WebGLTexture*); 167 …erTexture2D(GC3Denum target, GC3Denum attachment, GC3Denum textarget, WebGLTexture*, GC3Dint level… 203 GC3Dboolean isTexture(WebGLTexture*); 445 RefPtr<WebGLTexture> m_texture2DBinding; 446 RefPtr<WebGLTexture> m_textureCubeMapBinding; 451 RefPtr<WebGLTexture> m_blackTexture2D; 452 RefPtr<WebGLTexture> m_blackTextureCubeMap; [all …]
|
D | WebGLCompressedTextureATC.h | 35 class WebGLTexture; variable
|
D | WebGLCompressedTextureS3TC.h | 35 class WebGLTexture; variable
|
D | WebGLRenderingContext.cpp | 651 m_maxTextureLevel = WebGLTexture::computeLevelCount(m_maxTextureSize, m_maxTextureSize); in initializeNewContext() 654 …m_maxCubeMapTextureLevel = WebGLTexture::computeLevelCount(m_maxCubeMapTextureSize, m_maxCubeMapTe… in initializeNewContext() 1129 void WebGLRenderingContext::bindTexture(GC3Denum target, WebGLTexture* texture) in bindTexture() 1409 WebGLTexture* tex = validateTextureBinding("compressedTexImage2D", target, true); in compressedTexImage2D() 1413 if (level && WebGLTexture::isNPOT(width, height)) { in compressedTexImage2D() 1437 WebGLTexture* tex = validateTextureBinding("compressedTexSubImage2D", target, true); in compressedTexSubImage2D() 1470 WebGLTexture* tex = validateTextureBinding("copyTexImage2D", target, true); in copyTexImage2D() 1477 if (!isGLES2NPOTStrict() && level && WebGLTexture::isNPOT(width, height)) { in copyTexImage2D() 1499 WebGLTexture* tex = validateTextureBinding("copyTexSubImage2D", target, true); in copyTexSubImage2D() 1553 PassRefPtr<WebGLTexture> WebGLRenderingContext::createTexture() in createTexture() [all …]
|
D | WebGLGetInfo.cpp | 162 WebGLGetInfo::WebGLGetInfo(PassRefPtr<WebGLTexture> value) in WebGLGetInfo() 279 PassRefPtr<WebGLTexture> WebGLGetInfo::getWebGLTexture() const in getWebGLTexture()
|
D | WebGLTexture.idl | 26 interface WebGLTexture {
|
D | WebGLRenderingContext.idl | 469 [StrictTypeChecking] void bindTexture(GLenum target, WebGLTexture texture); 502 [StrictTypeChecking] WebGLTexture createTexture(); 511 [StrictTypeChecking] void deleteTexture(WebGLTexture texture); 527 …mebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, WebGLTexture texture, GLint … 580 [StrictTypeChecking] GLboolean isTexture(WebGLTexture texture);
|
/external/chromium_org/ui/aura/bench/ |
D | bench_main.cc | 143 class WebGLTexture : public ui::Texture { class 145 WebGLTexture(gpu::gles2::GLES2Interface* gl, const gfx::Size& size) in WebGLTexture() function in __anon587f39e10111::WebGLTexture 164 virtual ~WebGLTexture() { in ~WebGLTexture() 171 DISALLOW_COPY_AND_ASSIGN(WebGLTexture); 210 texture_ = new WebGLTexture(gl, bounds.size()); in WebGLBench() 247 scoped_refptr<WebGLTexture> texture_;
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_html.target.linux-arm.mk | 180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
|
D | webcore_html.target.darwin-x86.mk | 180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
|
D | webcore_html.target.linux-mips.mk | 180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
|
D | webcore_html.target.darwin-mips.mk | 180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
|
D | webcore_html.target.darwin-arm.mk | 180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
|
D | webcore_html.target.linux-x86.mk | 180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
|
D | core.gypi | 265 'html/canvas/WebGLTexture.idl', 2468 'html/canvas/WebGLTexture.cpp', 2469 'html/canvas/WebGLTexture.h',
|
/external/chromium_org/third_party/WebKit/Source/bindings/ |
D | main_idl_files_list.tmp | 259 ../core/html/canvas/WebGLTexture.idl
|
D | interface_dependencies.target.darwin-mips.mk | 21 …onFormat.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/html/canvas/WebGLTexture.idl $(LOCAL_PAT…
|
D | interface_dependencies.target.darwin-x86.mk | 21 …onFormat.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/html/canvas/WebGLTexture.idl $(LOCAL_PAT…
|
D | interface_dependencies.target.darwin-arm.mk | 21 …onFormat.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/html/canvas/WebGLTexture.idl $(LOCAL_PAT…
|
D | interface_dependencies.target.linux-mips.mk | 21 …onFormat.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/html/canvas/WebGLTexture.idl $(LOCAL_PAT…
|