clang-format

This commit is contained in:
Lander Gallastegi 2025-05-16 00:58:33 +02:00
parent 2f05b23cca
commit 7c6f3cc00c
2 changed files with 3 additions and 2 deletions

View File

@ -15,9 +15,9 @@
#include <thread>
#include <fcntl.h>
#include <linux/userfaultfd.h>
#include "common/error.h"
#include <poll.h>
#include <sys/ioctl.h>
#include "common/error.h"
#endif
#else
#include <windows.h>

View File

@ -16,6 +16,7 @@ namespace VideoCore {
class PageManager {
static constexpr size_t PAGE_BITS = 12;
static constexpr size_t PAGE_SIZE = 1ULL << PAGE_BITS;
public:
explicit PageManager(Vulkan::Rasterizer* rasterizer);
~PageManager();