From 0b73875d395eb3abdb7ec7cdb6e0163a69119c15 Mon Sep 17 00:00:00 2001 From: Erik Date: Fri, 8 May 2026 19:48:00 +0200 Subject: [PATCH] phase(N.5) Task 2 fixup: name TexImage3D depth + border arguments Code quality review caught that the TexImage3D call dropped the depth: and border: named arguments specified in the plan. The bare positional `1, 0` is hard to disambiguate from the surrounding 10 parameters. Adds them back, no runtime change. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/AcDream.App/Rendering/TextureCache.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AcDream.App/Rendering/TextureCache.cs b/src/AcDream.App/Rendering/TextureCache.cs index a53dfd7..1a231bb 100644 --- a/src/AcDream.App/Rendering/TextureCache.cs +++ b/src/AcDream.App/Rendering/TextureCache.cs @@ -296,8 +296,8 @@ public sealed unsafe class TextureCache : Wb.ITextureCachePerInstance, IDisposab InternalFormat.Rgba8, (uint)decoded.Width, (uint)decoded.Height, - 1, - 0, + depth: 1, + border: 0, PixelFormat.Rgba, PixelType.UnsignedByte, p);