]> git.sesse.net Git - nageru/blobdiff - pbo_frame_allocator.h
Re-run IWYU, again with lots of manual cleanup.
[nageru] / pbo_frame_allocator.h
index 5050f6fbdd1d34579627ba36605b7b3f609a1029..452c006bd2d36c290de9cd456b4c4edbf4b87b85 100644 (file)
@@ -2,10 +2,12 @@
 #define _PBO_FRAME_ALLOCATOR 1
 
 #include <epoxy/gl.h>
+#include <stddef.h>
+#include <memory>
 #include <mutex>
 #include <queue>
 
-#include "bmusb.h"
+#include "bmusb/bmusb.h"
 
 // An allocator that allocates straight into OpenGL pinned memory.
 // Meant for video frames only. We use a queue rather than a stack,