Skip to content

Commit d7fa002

Browse files
committed
increase page size
1 parent 259c743 commit d7fa002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gfxstream/guest/platform/webrogue/WebrogueVirtGpuBlob.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ __attribute__((import_module("webrogue_gfx")))
1313
void imported_webrogue_gfx_vk_register_blob(uint64_t blobId, uint64_t size, void* buf);
1414

1515
WebrogueVirtGpuResource::WebrogueVirtGpuResource(uint64_t blobId, uint64_t size) {
16-
buf = aligned_alloc(4096, size);
16+
buf = aligned_alloc(16*1024, size);
1717
imported_webrogue_gfx_vk_register_blob(blobId, size, buf);
1818
}
1919

0 commit comments

Comments
 (0)