Removed automated event handling (#30)

Co-authored-by: Zachary Levy <zachary@sunforge.is>
Reviewed-on: #30
This commit was merged in pull request #30.
This commit is contained in:
2026-06-01 19:58:04 +00:00
parent a69b1e8199
commit 6ac41b22f8
3 changed files with 3 additions and 15 deletions
-12
View File
@@ -730,21 +730,9 @@ flush_deferred_and_close_backdrop_scope :: proc(
prepare_clay_batch :: proc(
base_layer: ^Layer,
batch: ^ClayBatch,
mouse_wheel_delta: [2]f32,
frame_time: f32 = 0,
custom_draw: Custom_Draw = nil,
temp_allocator := context.temp_allocator,
) {
mouse_pos: [2]f32
mouse_flags := sdl.GetMouseState(&mouse_pos.x, &mouse_pos.y)
// Update clay internals
clay.SetPointerState(
clay.Vector2{mouse_pos.x - base_layer.bounds.x, mouse_pos.y - base_layer.bounds.y},
.LEFT in mouse_flags,
)
clay.UpdateScrollContainers(true, mouse_wheel_delta, frame_time)
layer := base_layer
command_count := int(batch.cmds.length)
deferred_indices := make([dynamic]i32, 0, 16, temp_allocator)