Harbor

Changelog b525c040ac77

pin gpu readback surface

@sky · 1 month ago · parent 86790d313997
0 added 6 modified 0 deleted
gpu/backend/d3d11/d3d11_backend.odin +1 -0 modified
384 unchanged lines hidden
385 385 // Textures
386 386 create_texture = create_texture_d3d11,
387 387 destroy_texture = destroy_texture_d3d11,
388 + read_texture_rgba8 = read_texture_rgba8_d3d11,
388 389
389 390 // Samplers
390 391 create_sampler = create_sampler_d3d11,
207 unchanged lines hidden
gpu/backend/d3d11/d3d11_ops.odin modified

Diff hidden because this file has more than 800 lines.

gpu/backend/d3d12/d3d12_backend.odin modified

Diff hidden because this file has more than 800 lines.

gpu/backend/d3d12/d3d12_ops.odin modified

Diff hidden because this file has more than 800 lines.

gpu/backend/opengl/gl_backend.odin +1 -0 modified
202 unchanged lines hidden
203 203 bind_index_buffer = bind_index_buffer_opengl,
204 204 create_texture = create_texture_opengl,
205 205 destroy_texture = destroy_texture_opengl,
206 + read_texture_rgba8 = read_texture_rgba8_opengl,
206 207 create_sampler = create_sampler_opengl,
207 208 destroy_sampler = destroy_sampler_opengl,
208 209 create_image = create_image_opengl,
104 unchanged lines hidden
gpu/backend/opengl/gl_ops.odin modified

Diff hidden because this file has more than 800 lines.