Home
last modified time | relevance | path

Searched refs:WebGLTexture (Results 1 – 25 of 33) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DWebGLTexture.cpp34 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 …]
DWebGLTexture.h36 class WebGLTexture : public WebGLSharedObject, public ScriptWrappable {
43 virtual ~WebGLTexture();
45 static PassRefPtr<WebGLTexture> create(WebGLRenderingContext*);
79 WebGLTexture(WebGLRenderingContext*);
DWebGLGetInfo.h90 explicit WebGLGetInfo(PassRefPtr<WebGLTexture> value);
111 PassRefPtr<WebGLTexture> getWebGLTexture() const;
132 RefPtr<WebGLTexture> m_webglTexture;
DWebGLFramebuffer.h38 class WebGLTexture; variable
71 …void setAttachmentForBoundFramebuffer(GC3Denum attachment, GC3Denum texTarget, WebGLTexture*, GC3D…
DWebGLFramebuffer.cpp158 …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()
DWebGLRenderingContext.h84 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 …]
DWebGLCompressedTextureATC.h35 class WebGLTexture; variable
DWebGLCompressedTextureS3TC.h35 class WebGLTexture; variable
DWebGLRenderingContext.cpp651 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 …]
DWebGLGetInfo.cpp162 WebGLGetInfo::WebGLGetInfo(PassRefPtr<WebGLTexture> value) in WebGLGetInfo()
279 PassRefPtr<WebGLTexture> WebGLGetInfo::getWebGLTexture() const in getWebGLTexture()
DWebGLTexture.idl26 interface WebGLTexture {
DWebGLRenderingContext.idl469 [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/
Dbench_main.cc143 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/
Dwebcore_html.target.linux-arm.mk180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
Dwebcore_html.target.darwin-x86.mk180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
Dwebcore_html.target.linux-mips.mk180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
Dwebcore_html.target.darwin-mips.mk180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
Dwebcore_html.target.darwin-arm.mk180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
Dwebcore_html.target.linux-x86.mk180 third_party/WebKit/Source/core/html/canvas/WebGLTexture.cpp \
Dcore.gypi265 'html/canvas/WebGLTexture.idl',
2468 'html/canvas/WebGLTexture.cpp',
2469 'html/canvas/WebGLTexture.h',
/external/chromium_org/third_party/WebKit/Source/bindings/
Dmain_idl_files_list.tmp259 ../core/html/canvas/WebGLTexture.idl
Dinterface_dependencies.target.darwin-mips.mk21 …onFormat.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/html/canvas/WebGLTexture.idl $(LOCAL_PAT…
Dinterface_dependencies.target.darwin-x86.mk21 …onFormat.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/html/canvas/WebGLTexture.idl $(LOCAL_PAT…
Dinterface_dependencies.target.darwin-arm.mk21 …onFormat.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/html/canvas/WebGLTexture.idl $(LOCAL_PAT…
Dinterface_dependencies.target.linux-mips.mk21 …onFormat.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/html/canvas/WebGLTexture.idl $(LOCAL_PAT…

12