Loading vulkan/nulldrv/null_driver.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -89,7 +89,7 @@ enum Enum { }; } // namespace HandleType const VkDeviceSize kMaxDeviceMemory = VkDeviceSize(INTPTR_MAX) + 1; const VkDeviceSize kMaxDeviceMemory = 0x10000000; // 256 MiB, arbitrary } // anonymous namespace Loading vulkan/tools/vkinfo.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -342,7 +342,7 @@ void PrintGpuInfo(const GpuInfo& info, const Options& options, size_t indent) { strbuf << "DEVICE_LOCAL"; printf("%sHeap %u: %" PRIu64 " MiB (0x%" PRIx64 " B) %s\n", Indent(indent + 1), heap, info.memory.memoryHeaps[heap].size / 0x1000000, info.memory.memoryHeaps[heap].size / 0x100000, info.memory.memoryHeaps[heap].size, strbuf.str().c_str()); strbuf.str(std::string()); Loading Loading
vulkan/nulldrv/null_driver.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -89,7 +89,7 @@ enum Enum { }; } // namespace HandleType const VkDeviceSize kMaxDeviceMemory = VkDeviceSize(INTPTR_MAX) + 1; const VkDeviceSize kMaxDeviceMemory = 0x10000000; // 256 MiB, arbitrary } // anonymous namespace Loading
vulkan/tools/vkinfo.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -342,7 +342,7 @@ void PrintGpuInfo(const GpuInfo& info, const Options& options, size_t indent) { strbuf << "DEVICE_LOCAL"; printf("%sHeap %u: %" PRIu64 " MiB (0x%" PRIx64 " B) %s\n", Indent(indent + 1), heap, info.memory.memoryHeaps[heap].size / 0x1000000, info.memory.memoryHeaps[heap].size / 0x100000, info.memory.memoryHeaps[heap].size, strbuf.str().c_str()); strbuf.str(std::string()); Loading