early-access version 1490
This commit is contained in:
parent
70ed6ce99a
commit
ae5276503a
3 changed files with 7 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 1489.
|
This is the source code for early-access 1490.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -568,12 +568,13 @@ void TextureCacheRuntime::BlitFramebuffer(Framebuffer* dst, Framebuffer* src,
|
||||||
|
|
||||||
void TextureCacheRuntime::AccelerateImageUpload(Image& image, const ImageBufferMap& map,
|
void TextureCacheRuntime::AccelerateImageUpload(Image& image, const ImageBufferMap& map,
|
||||||
std::span<const SwizzleParameters> swizzles) {
|
std::span<const SwizzleParameters> swizzles) {
|
||||||
if (IsPixelFormatASTC(image.info.format)) {
|
|
||||||
return util_shaders.ASTCDecode(image, map, swizzles);
|
|
||||||
}
|
|
||||||
switch (image.info.type) {
|
switch (image.info.type) {
|
||||||
case ImageType::e2D:
|
case ImageType::e2D:
|
||||||
|
if (IsPixelFormatASTC(image.info.format)) {
|
||||||
|
return util_shaders.ASTCDecode(image, map, swizzles);
|
||||||
|
} else {
|
||||||
return util_shaders.BlockLinearUpload2D(image, map, swizzles);
|
return util_shaders.BlockLinearUpload2D(image, map, swizzles);
|
||||||
|
}
|
||||||
case ImageType::e3D:
|
case ImageType::e3D:
|
||||||
return util_shaders.BlockLinearUpload3D(image, map, swizzles);
|
return util_shaders.BlockLinearUpload3D(image, map, swizzles);
|
||||||
case ImageType::Linear:
|
case ImageType::Linear:
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
namespace Vulkan {
|
namespace Vulkan {
|
||||||
|
|
||||||
constexpr size_t COMMAND_BUFFER_POOL_SIZE = 0x1000;
|
constexpr size_t COMMAND_BUFFER_POOL_SIZE = 4;
|
||||||
|
|
||||||
struct CommandPool::Pool {
|
struct CommandPool::Pool {
|
||||||
vk::CommandPool handle;
|
vk::CommandPool handle;
|
||||||
|
|
Loading…
Reference in a new issue