mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-10 13:48:40 +00:00
externals: Update sirit to fix debug assert (#1783)
This commit is contained in:
2
externals/sirit
vendored
2
externals/sirit
vendored
Submodule externals/sirit updated: 5b5ff49a58...1e74f4ef8d
@@ -247,7 +247,7 @@ void EmitImageWrite(EmitContext& ctx, IR::Inst* inst, u32 handle, Id coords, Id
|
|||||||
ImageOperands operands;
|
ImageOperands operands;
|
||||||
if (ctx.profile.supports_image_load_store_lod) {
|
if (ctx.profile.supports_image_load_store_lod) {
|
||||||
operands.Add(spv::ImageOperandsMask::Lod, lod);
|
operands.Add(spv::ImageOperandsMask::Lod, lod);
|
||||||
} else if (lod.value != 0) {
|
} else if (Sirit::ValidId(lod)) {
|
||||||
LOG_WARNING(Render, "Image write with LOD not supported by driver");
|
LOG_WARNING(Render, "Image write with LOD not supported by driver");
|
||||||
}
|
}
|
||||||
ctx.OpImageWrite(image, coords, ctx.OpBitcast(color_type, color), operands.mask,
|
ctx.OpImageWrite(image, coords, ctx.OpBitcast(color_type, color), operands.mask,
|
||||||
|
|||||||
Reference in New Issue
Block a user