diff --git a/src/freedreno/ci/freedreno-a618-fails.txt b/src/freedreno/ci/freedreno-a618-fails.txt index 00da0941991..102414387f7 100644 --- a/src/freedreno/ci/freedreno-a618-fails.txt +++ b/src/freedreno/ci/freedreno-a618-fails.txt @@ -159,8 +159,6 @@ spec@ext_external_objects@vk-image-overwrite@RGBA 8 UNORM optimal: Failed to ini spec@ext_external_objects@vk-stencil-display,Fail spec@ext_external_objects@vk-stencil-display@D24S8,Fail -spec@ext_framebuffer_blit@fbo-blit-check-limits,Fail - spec@ext_framebuffer_multisample@alpha-to-coverage-dual-src-blend 2,Fail spec@ext_framebuffer_multisample@alpha-to-coverage-dual-src-blend 4,Fail spec@ext_framebuffer_multisample@alpha-to-coverage-no-draw-buffer-zero 2,Fail diff --git a/src/gallium/drivers/d3d12/ci/d3d12-quick_gl.txt b/src/gallium/drivers/d3d12/ci/d3d12-quick_gl.txt index db1d9dceed6..6548486ee71 100644 --- a/src/gallium/drivers/d3d12/ci/d3d12-quick_gl.txt +++ b/src/gallium/drivers/d3d12/ci/d3d12-quick_gl.txt @@ -144,7 +144,6 @@ spec@arb_texture_stencil8@texwrap formats@GL_STENCIL_INDEX8- NPOT,Fail spec@arb_texture_stencil8@texwrap formats@GL_STENCIL_INDEX8- swizzled,Fail spec@arb_transform_feedback_instanced@draw-auto instanced,Fail spec@arb_vertex_program@arb_vertex_program-matrix-property-bindings,Fail -spec@ext_framebuffer_blit@fbo-blit-check-limits,Fail spec@ext_framebuffer_multisample@accuracy 16 srgb depthstencil,Fail spec@ext_framebuffer_multisample@accuracy 16 srgb depthstencil linear,Fail spec@ext_framebuffer_multisample@accuracy 16 srgb small depthstencil,Fail diff --git a/src/gallium/drivers/zink/ci/zink-lvp-fails.txt b/src/gallium/drivers/zink/ci/zink-lvp-fails.txt index da9c6f02dbd..27c991a74d1 100644 --- a/src/gallium/drivers/zink/ci/zink-lvp-fails.txt +++ b/src/gallium/drivers/zink/ci/zink-lvp-fails.txt @@ -102,7 +102,6 @@ spec@egl 1.4@eglterminate then unbind context,Fail spec@egl_khr_gl_image@egl_khr_gl_renderbuffer_image-clear-shared-image gl_depth_component24,Fail spec@egl_khr_surfaceless_context@viewport,Fail spec@egl_mesa_configless_context@basic,Fail -spec@ext_framebuffer_blit@fbo-blit-check-limits,Fail spec@ext_framebuffer_multisample@blit-mismatched-formats,Fail spec@ext_framebuffer_multisample@clip-and-scissor-blit 2 msaa,Fail spec@ext_framebuffer_multisample@clip-and-scissor-blit 2 upsample,Fail diff --git a/src/gallium/drivers/zink/ci/zink-radv-vangogh-fails.txt b/src/gallium/drivers/zink/ci/zink-radv-vangogh-fails.txt index 557ca1f87b5..d756d67970f 100644 --- a/src/gallium/drivers/zink/ci/zink-radv-vangogh-fails.txt +++ b/src/gallium/drivers/zink/ci/zink-radv-vangogh-fails.txt @@ -235,7 +235,6 @@ spec@ext_texture_srgb@fbo-generatemipmap-formats@GL_SLUMINANCE8_ALPHA8,Fail spec@ext_texture_srgb@fbo-generatemipmap-formats@GL_SLUMINANCE8_ALPHA8 NPOT,Fail spec@ext_texture_srgb@fbo-generatemipmap-formats@GL_SLUMINANCE_ALPHA,Fail spec@ext_texture_srgb@fbo-generatemipmap-formats@GL_SLUMINANCE_ALPHA NPOT,Fail -spec@ext_framebuffer_blit@fbo-blit-check-limits,Fail # Introduced with the uprev of piglit (70ce1dcacc92 - "ci: Update piglit with s3 support") spec@egl 1.4@egl-ext_egl_image_storage,Fail diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index 109aba8e8ab..c20550e8c3b 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -552,14 +552,14 @@ struct pipe_image_view */ struct pipe_box { - /* Fields only used by textures use int16_t instead of int. - * x and width are used by buffers, so they need the full 32-bit range. + /* Only "x" and "width" are used to represent buffer ranges. + * The maximum representable texture size is ANY x ANY x 16K. */ - int x; - int16_t y; + int32_t x; + int32_t width; + int32_t y; + int32_t height; int16_t z; - int width; - int16_t height; int16_t depth; };