mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-27 12:34:37 +00:00
clang-format
This commit is contained in:
parent
2f05b23cca
commit
7c6f3cc00c
@ -15,9 +15,9 @@
|
|||||||
#include <thread>
|
#include <thread>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <linux/userfaultfd.h>
|
#include <linux/userfaultfd.h>
|
||||||
#include "common/error.h"
|
|
||||||
#include <poll.h>
|
#include <poll.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
|
#include "common/error.h"
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
@ -16,6 +16,7 @@ namespace VideoCore {
|
|||||||
class PageManager {
|
class PageManager {
|
||||||
static constexpr size_t PAGE_BITS = 12;
|
static constexpr size_t PAGE_BITS = 12;
|
||||||
static constexpr size_t PAGE_SIZE = 1ULL << PAGE_BITS;
|
static constexpr size_t PAGE_SIZE = 1ULL << PAGE_BITS;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit PageManager(Vulkan::Rasterizer* rasterizer);
|
explicit PageManager(Vulkan::Rasterizer* rasterizer);
|
||||||
~PageManager();
|
~PageManager();
|
||||||
|
Loading…
Reference in New Issue
Block a user