mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb/WebGL2: Implement texSubImage2D with ArrayBufferView and offset
This commit is contained in:
parent
e6ebec853b
commit
766f4d2ec4
Notes:
github-actions[bot]
2024-12-14 08:09:26 +00:00
Author: https://github.com/Lubrsi
Commit: 766f4d2ec4
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2905
2 changed files with 14 additions and 1 deletions
|
@ -670,6 +670,19 @@ public:
|
|||
continue;
|
||||
}
|
||||
|
||||
if (webgl_version == 2 && function.name == "texSubImage2D"sv && function.overload_index == 1) {
|
||||
function_impl_generator.append(R"~~~(
|
||||
void const* pixels_ptr = nullptr;
|
||||
if (src_data) {
|
||||
auto const& viewed_array_buffer = src_data->viewed_array_buffer();
|
||||
auto const& byte_buffer = viewed_array_buffer->buffer();
|
||||
pixels_ptr = byte_buffer.data() + src_offset;
|
||||
}
|
||||
glTexSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels_ptr);
|
||||
)~~~");
|
||||
continue;
|
||||
}
|
||||
|
||||
if (function.name == "texSubImage3D"sv && function.overload_index == 0) {
|
||||
function_impl_generator.append(R"~~~(
|
||||
void const* pixels_ptr = nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue