From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 6EEFC4CAB9 for ; Mon, 24 Feb 2025 08:05:53 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id A7F3268CCEE; Mon, 24 Feb 2025 10:04:51 +0200 (EET) Received: from vidala.pars.ee (vidala.pars.ee [116.203.72.101]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3D89368CB4E for ; Mon, 24 Feb 2025 10:04:39 +0200 (EET) DKIM-Signature: v=1; a=rsa-sha256; s=202405r; d=lynne.ee; c=relaxed/relaxed; h=Message-ID:Date:Subject:To:From; t=1740384278; bh=qelSvQeb/R+g5YItLtfpNi7 s30A/bYSLBJnZePeOazE=; b=GrWt5gXDe35cZdEZg2muFlX0uX+DaT4bCmkeZc/WIGo4TpVK8V XqnTrWjVCBqefcbLhy1G6SqiyPfPvN4sCGpTfiA/hvus/0Y2VL4eWPQ1C4MFrX0l4/X2CXglb4d N7UXJoLLeGDfU+oEQic0lOK3NSSPz4hs/X7ujlQmW7oJNYLVQPmwar98gZyAWMIaCjZBKMWnPlf DF6L9U0txZbvHA7781+iROVM/UqtVWN1mXU/OALrRr4kCelCkB7r5zRJPN4iEVqCiUmpTk6oGZs +bSo7s9nzS9sDh8pL+QmfFbHzwEA1rSbDsv2kQxD2ZsIdbSCignwf67MKUVckOyRSFg==; DKIM-Signature: v=1; a=ed25519-sha256; s=202405e; d=lynne.ee; c=relaxed/relaxed; h=Message-ID:Date:Subject:To:From; t=1740384278; bh=qelSvQeb/R+g5YItLtfpNi7 s30A/bYSLBJnZePeOazE=; b=Hmao2oDy3Rl/iv3CTZ7OEwwu+zwb00pxUsC0isrP8DvCCjNTtF eDYlUROzPiQwNquC4sQ5Bcl8+cnWHPSN6oCg==; From: Lynne To: ffmpeg-devel@ffmpeg.org Date: Mon, 24 Feb 2025 09:04:19 +0100 Message-ID: <20250224080434.5632-6-dev@lynne.ee> X-Mailer: git-send-email 2.47.2 In-Reply-To: <20250224080434.5632-1-dev@lynne.ee> References: <20250224080434.5632-1-dev@lynne.ee> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v2 06/12] hwcontext_vulkan: enable read/write without storage X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Lynne Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- libavutil/hwcontext_vulkan.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index ec6459712b..11d9e987b0 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vulkan.c @@ -244,6 +244,8 @@ static void device_features_copy_needed(VulkanDeviceFeatures *dst, VulkanDeviceF COPY_VAL(device.features.shaderInt64); COPY_VAL(device.features.shaderInt16); COPY_VAL(device.features.shaderFloat64); + COPY_VAL(device.features.shaderStorageImageReadWithoutFormat); + COPY_VAL(device.features.shaderStorageImageWriteWithoutFormat); COPY_VAL(vulkan_1_1.samplerYcbcrConversion); COPY_VAL(vulkan_1_1.storagePushConstant16); -- 2.47.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".