Home
last modified time | relevance | path

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

12345678910>>...18

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/html/canvas/
H A DWebGLTexture.cpp37 PassRefPtr<WebGLTexture> WebGLTexture::create(WebGLRenderingContext* ctx) in create()
39 return adoptRef(new WebGLTexture(ctx)); in create()
42 WebGLTexture::WebGLTexture(WebGLRenderingContext* ctx) in WebGLTexture() function in WebCore::WebGLTexture
148 void WebGLTexture::generateMipmapLevelInfo() in generateMipmapLevelInfo()
204 bool WebGLTexture::isNPOT(GC3Dsizei width, GC3Dsizei height) in isNPOT()
214 bool WebGLTexture::isNPOT() const in isNPOT()
221 bool WebGLTexture::needToUseBlackTexture() const in needToUseBlackTexture()
233 int WebGLTexture::mapTargetToIndex(GC3Denum target) const in mapTargetToIndex()
257 bool WebGLTexture::canGenerateMipmaps() in canGenerateMipmaps()
292 void WebGLTexture::update() in update()
[all …]
H A DWebGLTexture.h37 class WebGLTexture : public WebGLObject {
39 virtual ~WebGLTexture() { deleteObject(); } in ~WebGLTexture()
41 static PassRefPtr<WebGLTexture> create(WebGLRenderingContext*);
74 WebGLTexture(WebGLRenderingContext*);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/modules/webgl/
H A Dwebgl_texture.cc33 WebGLTexture::WebGLTexture(WebGLRenderingContextBase* ctx) in WebGLTexture() function in blink::WebGLTexture
40 WebGLTexture::WebGLTexture(WebGLRenderingContextBase* ctx, in WebGLTexture() function in blink::WebGLTexture
47 WebGLTexture::~WebGLTexture() = default;
49 void WebGLTexture::SetTarget(GLenum target) { in SetTarget()
58 void WebGLTexture::DeleteObjectImpl(gpu::gles2::GLES2Interface* gl) { in DeleteObjectImpl()
63 int WebGLTexture::MapTargetToIndex(GLenum target) const { in MapTargetToIndex()
92 GLint WebGLTexture::ComputeLevelCount(GLsizei width, in ComputeLevelCount()
H A Dwebgl_texture.h34 class WebGLTexture : public WebGLSharedPlatform3DObject {
38 explicit WebGLTexture(WebGLRenderingContextBase*);
40 ~WebGLTexture() override;
76 explicit WebGLTexture(WebGLRenderingContextBase* ctx,
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/modules/webgl/
H A Dwebgl_texture.cc33 WebGLTexture::WebGLTexture(WebGLRenderingContextBase* ctx) in WebGLTexture() function in blink::WebGLTexture
40 WebGLTexture::~WebGLTexture() = default;
42 void WebGLTexture::SetTarget(GLenum target) { in SetTarget()
51 void WebGLTexture::DeleteObjectImpl(gpu::gles2::GLES2Interface* gl) { in DeleteObjectImpl()
56 int WebGLTexture::MapTargetToIndex(GLenum target) const { in MapTargetToIndex()
85 GLint WebGLTexture::ComputeLevelCount(GLsizei width, in ComputeLevelCount()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/canvas/
H A DWebGLTexture.cpp24 /*static*/ const WebGLTexture::ImageInfo WebGLTexture::ImageInfo::kUndefined;
59 bool WebGLTexture::ImageInfo::IsPowerOfTwo() const { in IsPowerOfTwo()
70 void WebGLTexture::ImageInfo::RemoveAttachPoint( in RemoveAttachPoint()
101 JSObject* WebGLTexture::WrapObject(JSContext* cx, in WrapObject()
106 WebGLTexture::WebGLTexture(WebGLContext* webgl, GLuint tex) in WebGLTexture() function in mozilla::WebGLTexture
125 void WebGLTexture::Delete() { in Delete()
136 size_t WebGLTexture::MemoryUsage() const { in MemoryUsage()
230 bool WebGLTexture::IsCubeComplete() const { in IsCubeComplete()
712 void WebGLTexture::ClampLevelBaseAndMax() { in ClampLevelBaseAndMax()
956 bool WebGLTexture::IsTexture() const { in IsTexture()
[all …]
H A DWebGLContextTextures.cpp153 WebGLTexture* tex = in ValidateTexImageTarget()
244 WebGLTexture* tex; in GenerateMipmap()
257 WebGLTexture* tex; in GetTexParameter()
270 bool WebGLContext::IsTexture(WebGLTexture* tex) { in IsTexture()
282 WebGLTexture* tex; in TexParameter_base()
300 WebGLTexture* tex; in CompressedTexImage()
315 WebGLTexture* tex; in CompressedTexSubImage()
334 WebGLTexture* tex; in CopyTexImage2D()
348 WebGLTexture* tex; in CopyTexSubImage()
366 WebGLTexture* tex; in TexImage()
[all …]
H A DWebGLTexture.h54 class WebGLTexture final : public nsWrapperCache,
55 public WebGLRefCountedObject<WebGLTexture>,
56 public LinkedListElement<WebGLTexture> {
113 friend void WebGLTexture::SetImageInfo(const char* funcName,
116 friend void WebGLTexture::SetImageInfosAtLevel(const char* funcName,
190 void SetIsDataInitialized(bool isDataInitialized, WebGLTexture* tex);
197 NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(WebGLTexture)
198 NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(WebGLTexture)
200 WebGLTexture(WebGLContext* webgl, GLuint tex);
213 ~WebGLTexture() { DeleteOnce(); } in ~WebGLTexture()
[all …]
H A DWebGLFramebuffer.h25 class WebGLTexture; variable
42 WebGLRefPtr<WebGLTexture> mTexturePtr;
71 void SetTexImage(const char* funcName, WebGLTexture* tex,
75 WebGLTexture* Texture() const { return mTexturePtr; } in Texture()
226 void DetachTexture(const char* funcName, const WebGLTexture* tex);
269 GLenum texImageTarget, WebGLTexture* tex,
272 WebGLTexture* tex, GLint level, GLint layer);
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/canvas/
H A DWebGLTexture.cpp24 /*static*/ const WebGLTexture::ImageInfo WebGLTexture::ImageInfo::kUndefined;
36 WebGLTexture::ImageInfo::Clear() in Clear()
51 WebGLTexture::ImageInfo&
94 WebGLTexture::ImageInfo::OnRespecify() const in OnRespecify()
112 WebGLTexture::ImageInfo::SetIsDataInitialized(bool isDataInitialized, WebGLTexture* tex) in SetIsDataInitialized()
129 WebGLTexture::WebGLTexture(WebGLContext* webgl, GLuint tex) in WebGLTexture() function in mozilla::WebGLTexture
150 WebGLTexture::Delete() in Delete()
163 WebGLTexture::MemoryUsage() const in MemoryUsage()
274 WebGLTexture::IsCubeComplete() const in IsCubeComplete()
766 WebGLTexture::ClampLevelBaseAndMax() in ClampLevelBaseAndMax()
[all …]
H A DWebGLContextTextures.cpp125 WebGLTexture** const out_tex) in ValidateTexTarget()
264 WebGLTexture* tex; in GenerateMipmap()
278 WebGLTexture* tex; in GetTexParameter()
291 WebGLContext::IsTexture(WebGLTexture* tex) in IsTexture()
307 WebGLTexture* tex; in TexParameter_base()
324 WebGLTexture* tex; in CompressedTexImage()
340 WebGLTexture* tex; in CompressedTexSubImage()
359 WebGLTexture* tex; in CopyTexImage2D()
372 WebGLTexture* tex; in CopyTexSubImage()
389 WebGLTexture* tex; in TexImage()
[all …]
H A DWebGLTexture.h57 class WebGLTexture final
59 , public WebGLRefCountedObject<WebGLTexture>
60 , public LinkedListElement<WebGLTexture>
116 friend void WebGLTexture::SetImageInfo(ImageInfo* target,
118 friend void WebGLTexture::SetImageInfosAtLevel(uint32_t level,
195 void SetIsDataInitialized(bool isDataInitialized, WebGLTexture* tex);
202 NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(WebGLTexture)
203 NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(WebGLTexture)
205 WebGLTexture(WebGLContext* webgl, GLuint tex);
219 ~WebGLTexture() { in ~WebGLTexture()
[all …]
H A DWebGLFramebuffer.h25 class WebGLTexture; variable
42 WebGLRefPtr<WebGLTexture> mTexturePtr;
71 void SetTexImage(WebGLTexture* tex, TexImageTarget target, GLint level,
75 WebGLTexture* Texture() const { return mTexturePtr; } in Texture()
233 void DetachTexture(const WebGLTexture* tex);
275 GLenum texImageTarget, WebGLTexture* tex, GLint level);
277 WebGLTexture* tex, GLint level, GLint layer);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/generated/
H A DJSWebGLTexture.h33 class WebGLTexture; variable
38 JSWebGLTexture(JSC::Structure*, JSDOMGlobalObject*, PassRefPtr<WebGLTexture>);
50 WebGLTexture* impl() const { return m_impl.get(); } in impl()
53 RefPtr<WebGLTexture> m_impl;
58 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, WebGLTexture*);
59 WebGLTexture* toWebGLTexture(JSC::JSValue);
/dports/lang/spidermonkey78/firefox-78.9.0/dom/canvas/
H A DWebGLTexture.cpp72 WebGLTexture::WebGLTexture(WebGLContext* webgl, GLuint tex) in WebGLTexture() function in mozilla::WebGLTexture
82 WebGLTexture::~WebGLTexture() { in ~WebGLTexture()
92 size_t WebGLTexture::MemoryUsage() const { in MemoryUsage()
102 void WebGLTexture::PopulateMipChain(const uint32_t maxLevel) { in PopulateMipChain()
181 Maybe<const WebGLTexture::CompletenessInfo> WebGLTexture::CalcCompletenessInfo( in CalcCompletenessInfo()
403 uint32_t WebGLTexture::EffectiveMaxLevel() const { in EffectiveMaxLevel()
438 void WebGLTexture::RefreshSwizzle() const { in RefreshSwizzle()
662 void WebGLTexture::ClampLevelBaseAndMax() { in ClampLevelBaseAndMax()
679 bool WebGLTexture::BindTexture(TexTarget texTarget) { in BindTexture()
712 void WebGLTexture::GenerateMipmap() { in GenerateMipmap()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/dom/canvas/
H A DWebGLTexture.cpp74 WebGLTexture::WebGLTexture(WebGLContext* webgl, GLuint tex) in WebGLTexture() function in mozilla::WebGLTexture
84 WebGLTexture::~WebGLTexture() { in ~WebGLTexture()
94 size_t WebGLTexture::MemoryUsage() const { in MemoryUsage()
104 void WebGLTexture::PopulateMipChain(const uint32_t maxLevel) { in PopulateMipChain()
183 Maybe<const WebGLTexture::CompletenessInfo> WebGLTexture::CalcCompletenessInfo( in CalcCompletenessInfo()
410 uint32_t WebGLTexture::Es3_q() const { in Es3_q()
445 void WebGLTexture::RefreshSwizzle() const { in RefreshSwizzle()
674 void WebGLTexture::ClampLevelBaseAndMax() { in ClampLevelBaseAndMax()
691 bool WebGLTexture::BindTexture(TexTarget texTarget) { in BindTexture()
724 void WebGLTexture::GenerateMipmap() { in GenerateMipmap()
[all …]
H A DTexUnpackBlob.h20 class WebGLTexture; variable
81 WebGLTexture* tex, GLint level,
101 WebGLTexture* tex, GLint level,
117 WebGLTexture* tex, GLint level,
133 WebGLTexture* tex, GLint level,
/dports/www/firefox/firefox-99.0/dom/canvas/
H A DWebGLTexture.cpp74 WebGLTexture::WebGLTexture(WebGLContext* webgl, GLuint tex) in WebGLTexture() function in mozilla::WebGLTexture
84 WebGLTexture::~WebGLTexture() { in ~WebGLTexture()
94 size_t WebGLTexture::MemoryUsage() const { in MemoryUsage()
104 void WebGLTexture::PopulateMipChain(const uint32_t maxLevel) { in PopulateMipChain()
183 Maybe<const WebGLTexture::CompletenessInfo> WebGLTexture::CalcCompletenessInfo( in CalcCompletenessInfo()
410 uint32_t WebGLTexture::Es3_q() const { in Es3_q()
445 void WebGLTexture::RefreshSwizzle() const { in RefreshSwizzle()
674 void WebGLTexture::ClampLevelBaseAndMax() { in ClampLevelBaseAndMax()
691 bool WebGLTexture::BindTexture(TexTarget texTarget) { in BindTexture()
724 void WebGLTexture::GenerateMipmap() { in GenerateMipmap()
[all …]
H A DTexUnpackBlob.h20 class WebGLTexture; variable
81 WebGLTexture* tex, GLint level,
101 WebGLTexture* tex, GLint level,
117 WebGLTexture* tex, GLint level,
133 WebGLTexture* tex, GLint level,
/dports/mail/thunderbird/thunderbird-91.8.0/dom/canvas/
H A DWebGLTexture.cpp74 WebGLTexture::WebGLTexture(WebGLContext* webgl, GLuint tex) in WebGLTexture() function in mozilla::WebGLTexture
84 WebGLTexture::~WebGLTexture() { in ~WebGLTexture()
94 size_t WebGLTexture::MemoryUsage() const { in MemoryUsage()
104 void WebGLTexture::PopulateMipChain(const uint32_t maxLevel) { in PopulateMipChain()
183 Maybe<const WebGLTexture::CompletenessInfo> WebGLTexture::CalcCompletenessInfo( in CalcCompletenessInfo()
410 uint32_t WebGLTexture::Es3_q() const { in Es3_q()
445 void WebGLTexture::RefreshSwizzle() const { in RefreshSwizzle()
674 void WebGLTexture::ClampLevelBaseAndMax() { in ClampLevelBaseAndMax()
691 bool WebGLTexture::BindTexture(TexTarget texTarget) { in BindTexture()
724 void WebGLTexture::GenerateMipmap() { in GenerateMipmap()
[all …]
H A DTexUnpackBlob.h20 class WebGLTexture; variable
81 WebGLTexture* tex, GLint level,
101 WebGLTexture* tex, GLint level,
117 WebGLTexture* tex, GLint level,
133 WebGLTexture* tex, GLint level,
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/dom/
H A Dwebgltexture.rs32 pub struct WebGLTexture { struct
53 impl WebGLTexture { implementation
56 -> WebGLTexture { in new_inherited() argument
57 WebGLTexture { in new_inherited()
73 -> Option<DomRoot<WebGLTexture>> { in maybe_new() argument
78 result.map(|texture_id| WebGLTexture::new(window, renderer, texture_id)) in maybe_new()
84 -> DomRoot<WebGLTexture> { in new() argument
85 reflect_dom_object(Box::new(WebGLTexture::new_inherited(renderer, id)), in new()
92 impl WebGLTexture { implementation
391 impl Drop for WebGLTexture { implementation
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/modules/xr/
H A Dxr_webgl_binding.h17 class WebGLTexture; variable
36 WebGLTexture* getReflectionCubeMap(XRLightProbe*, ExceptionState&);
37 WebGLTexture* getCameraImage(XRFrame*, XRView*);
H A Dxr_cube_map.h18 class WebGLTexture; variable
25 WebGLTexture* updateWebGLEnvironmentCube(WebGLRenderingContextBase* context,
26 WebGLTexture* texture,
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/modules/xr/
H A Dxr_cube_map.h16 class WebGLTexture; variable
25 WebGLTexture* updateWebGLEnvironmentCube(
27 WebGLTexture* texture,

12345678910>>...18