[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][xorg-team/app/piglit][debian-unstable] 3 commits: d/changelog: Start 0.0~git20250409.af62c0dea-2 changelog



Title: GitLab

Jordan Justen pushed to branch debian-unstable at X Strike Force / app / piglit

Commits:

  • 56a64f46
    by Jordan Justen at 2025-04-14T15:03:05-07:00
    d/changelog: Start 0.0~git20250409.af62c0dea-2 changelog
    
    Signed-off-by: Jordan Justen <jljusten@debian.org>
    
  • 26a5ad13
    by Jordan Justen at 2025-04-14T15:34:42-07:00
    d/patches: Add patch to fix upstream FTBFS 32-bit issue
    
    Signed-off-by: Jordan Justen <jljusten@debian.org>
    
  • 4842e5b1
    by Jordan Justen at 2025-04-14T15:37:04-07:00
    d/changelog: Release 0.0~git20250409.af62c0dea-2 to unstable
    
    Signed-off-by: Jordan Justen <jljusten@debian.org>
    

3 changed files:

Changes:

  • debian/changelog
    1
    +piglit (0.0~git20250409.af62c0dea-2) unstable; urgency=medium
    
    2
    +
    
    3
    +  * d/patches: Add patch to fix upstream FTBFS 32-bit issue
    
    4
    +
    
    5
    + -- Jordan Justen <jljusten@debian.org>  Mon, 14 Apr 2025 15:36:14 -0700
    
    6
    +
    
    1 7
     piglit (0.0~git20250409.af62c0dea-1) unstable; urgency=medium
    
    2 8
     
    
    3 9
       * Update piglit upstream version to af62c0dea
    

  • debian/patches/0001-ext_external_objects-Fix-two-null-handle-misassignme.patch
    1
    +From: Jordan Justen <jordan.l.justen@intel.com>
    
    2
    +Date: Mon, 14 Apr 2025 14:56:22 -0700
    
    3
    +Subject: ext_external_objects: Fix two null-handle misassignments
    
    4
    +
    
    5
    +Setting to NULL (a pointer, rather than handle), causes build issues
    
    6
    +on 32-bit architectures.
    
    7
    +
    
    8
    +Fixes: 18c82454d ("ext_external_objects: Add compute shader infrastructure")
    
    9
    +Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
    
    10
    +---
    
    11
    + tests/spec/ext_external_objects/vk.c | 4 ++--
    
    12
    + 1 file changed, 2 insertions(+), 2 deletions(-)
    
    13
    +
    
    14
    +diff --git a/tests/spec/ext_external_objects/vk.c b/tests/spec/ext_external_objects/vk.c
    
    15
    +index b5f3de7..5518629 100644
    
    16
    +--- a/tests/spec/ext_external_objects/vk.c
    
    17
    ++++ b/tests/spec/ext_external_objects/vk.c
    
    18
    +@@ -1380,7 +1380,7 @@ vk_create_compute_pipeline(struct vk_ctx *ctx,
    
    19
    + 	s_layout_info.pBindings = bindings;
    
    20
    + 	if (vkCreateDescriptorSetLayout(ctx->dev, &s_layout_info, NULL, &cp->set_layout) != VK_SUCCESS) {
    
    21
    + 		fprintf(stderr, "Failed to create descriptor set layout\n");
    
    22
    +-		cp->set_layout = NULL;
    
    23
    ++		cp->set_layout = VK_NULL_HANDLE;
    
    24
    + 		free(bindings);
    
    25
    + 		goto fail;
    
    26
    + 	}
    
    27
    +@@ -1395,7 +1395,7 @@ vk_create_compute_pipeline(struct vk_ctx *ctx,
    
    28
    + 	p_layout_info.pSetLayouts = &cp->set_layout;
    
    29
    + 	if (vkCreatePipelineLayout(ctx->dev, &p_layout_info, NULL, &cp->pipeline_layout) != VK_SUCCESS) {
    
    30
    + 		fprintf(stderr, "Failed to create pipeline layout\n");
    
    31
    +-		cp->pipeline_layout = NULL;
    
    32
    ++		cp->pipeline_layout = VK_NULL_HANDLE;
    
    33
    + 		goto fail;
    
    34
    + 	}
    
    35
    + 

  • debian/patches/series
    1
    +0001-ext_external_objects-Fix-two-null-handle-misassignme.patch


  • Reply to: