[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#59386] [PATCH] gnu: Add vulkan-memory-allocator.
From: |
dan |
Subject: |
[bug#59386] [PATCH] gnu: Add vulkan-memory-allocator. |
Date: |
Sun, 20 Nov 2022 21:49:31 +0800 |
* gnu/packages/vulkan.scm (vulkan-memory-allocator): New variable.
---
gnu/packages/vulkan.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm
index 95b8542133..cbad4f3abc 100644
--- a/gnu/packages/vulkan.scm
+++ b/gnu/packages/vulkan.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2021 Mathieu Othacehe <othacehe@gnu.org>
;;; Copyright © 2022 Kaelyn Takata <kaelyn.alexi@protonmail.com>
+;;; Copyright © 2022 dan <i@dan.games>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -502,3 +503,30 @@ (define-public volk
skipping loader dispatch overhead.")
(home-page "https://github.com/zeux/volk")
(license license:expat)))
+
+(define-public vulkan-memory-allocator
+ (package
+ (name "vulkan-memory-allocator")
+ (version "3.0.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
+
"https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "1hpzjwl5bgqv9hmf1fdldihfllcbdg515f391a200klg0rnixdds"))))
+ (build-system cmake-build-system)
+ (arguments
+ ;; no test
+ `(#:tests? #f))
+ (inputs (list vulkan-loader vulkan-headers))
+ (synopsis "Vulkan memory allocation library")
+ (description
+ "The Vulkan Memory Allocator (VMA) library provides a simple and easy to
+integrate API to help users allocate memory for Vulkan buffer and image
+storage.")
+ (home-page
+ "https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator")
+ (license license:expat)))
--
2.38.1
- [bug#59386] [PATCH 08/11] gnu: vulkan-tools: Update to sdk-1.3.231.1., (continued)
- [bug#59386] [PATCH 08/11] gnu: vulkan-tools: Update to sdk-1.3.231.1., dan, 2022/11/19
- [bug#59386] [PATCH 06/11] gnu: vulkan-headers: Update to sdk-1.3.231.1., dan, 2022/11/19
- [bug#59386] [PATCH 07/11] gnu: vulkan-loader: Update to sdk-1.3.231.1., dan, 2022/11/19
- [bug#59386] [PATCH 10/11] gnu: Add volk., dan, 2022/11/19
- [bug#59386] [PATCH 11/11] gnu: Add vulkan-memory-allocator., dan, 2022/11/19
- [bug#59386] [PATCH 09/11] gnu: vulkan-validationlayers: Update to sdk-1.3.231.1., dan, 2022/11/19
- [bug#59386] [PATCH staging 00/11] Update vulkan-sdk packages to sdk-1.3.231.1., Marius Bakke, 2022/11/20
- [bug#59386] [PATCH] gnu: Add vulkan-memory-allocator.,
dan <=