1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-22 15:06:45 +00:00

Consolidate frame_changed signal into CameraFeed

This commit is contained in:
KOGA Mitsuhiro
2025-06-21 23:25:57 +09:00
parent a3b42d85d2
commit 49e3eba008
4 changed files with 9 additions and 7 deletions

View File

@@ -204,8 +204,6 @@ void CameraFeedLinux::_read_frame() {
if (ioctl(file_descriptor, VIDIOC_QBUF, &buffer) == -1) {
print_error(vformat("ioctl(VIDIOC_QBUF) error: %d.", errno));
}
emit_signal(SNAME("frame_changed"));
}
void CameraFeedLinux::_stop_capturing() {