mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 14:19:48 +00:00
LibWeb/WebGL: Return vertex shader from Program::attached_vertex_shader
This commit is contained in:
parent
dcfc515cd0
commit
38713d7c14
Notes:
github-actions[bot]
2025-05-26 14:17:43 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: 38713d7c14
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4886
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ public:
|
||||||
|
|
||||||
virtual ~WebGLProgram();
|
virtual ~WebGLProgram();
|
||||||
|
|
||||||
GC::Ptr<WebGLShader> attached_vertex_shader() const { return m_attached_fragment_shader; }
|
GC::Ptr<WebGLShader> attached_vertex_shader() const { return m_attached_vertex_shader; }
|
||||||
void set_attached_vertex_shader(GC::Ptr<WebGLShader> shader) { m_attached_vertex_shader = shader; }
|
void set_attached_vertex_shader(GC::Ptr<WebGLShader> shader) { m_attached_vertex_shader = shader; }
|
||||||
|
|
||||||
GC::Ptr<WebGLShader> attached_fragment_shader() const { return m_attached_fragment_shader; }
|
GC::Ptr<WebGLShader> attached_fragment_shader() const { return m_attached_fragment_shader; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue