Commit Graph

11 Commits

Author SHA1 Message Date
Juan Ramos
fba81a6a54
[vulkan-memory-allocator] Update port to current ToT (#32513)
* [vulkan-memory-allocator] Update VMA port to current ToT

Contains fixes for gcc13 and adds streamlined CMake support.

See this PR for the recent CMake fixes:
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator/pull/350

* Update version database

* Fix typo in usage, dedupe cmake.org link, move up 3.21+, remove extra newline.

---------

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2023-07-14 22:01:41 -07:00
Mathis Logemann
55846bb4df
[vulkan-memory-allocator] add cstdio import for gcc13 (#31920)
* [vulkan-memory-allocator] add cstdio import for gcc13

* version
2023-06-12 16:44:41 -07:00
Chuck Walbourn
7a4ca3fd46
UWP toolchain fix and update some supports expressions for uwp/xbox (#30096)
* UWP toolchain fix and update some ports supports expressions for uwp/xbox

* Update baseline

* More ports updated for !xbox

* Update baseline

* Update support expression for ms-gdkx

* Update baseline

* ms-gdkx port should fail on ado system

* Revert change to opengl-registry since its needed for angle on UWP

* Minor github actions cr

* Refresh baseline
2023-03-20 12:02:25 -07:00
Ada Tufankjian
86e220d184
Updating vma port (#29230) 2023-01-31 16:28:39 -08:00
LilyWangLL
4f778cf094
[vulkan-memory-allocator] update to 3.0.0 (#23831)
* [vulkan-memory-allocator] update to 3.0.0

* update version

* format portfile.cmake

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-03-29 17:25:46 -07:00
Billy O'Neal
b295670e4b
Bulk convert control files. (#19986)
```
function Convert-Control {
    Param($full)
    .\vcpkg.exe format-manifest $full
    $root = $full.Substring(0, $full.Length - 7) # CONTROL
    $new = $root + 'vcpkg.json'
    $content = Get-Content -Raw $new
    $asJson = ConvertFrom-Json $content -AsHashtable -Depth 100
    $oldVersion = $asJson['port-version']
    if ($null -eq $oldVersion) {
        $oldVersionFull = $asJson['version-string']
        Write-Host "Got version $oldVersionFull"
        $match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$')
        if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) {
            $newFullVersion = [string]$match.Groups[1].Value
            $oldVersion = [int]$match.Groups[2].Value
            Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion"
            $newVersion = $oldVersion + 1
            $asJson['version-string'] = $newFullVersion
            Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion"
        } else {
            Write-Host "No previous version for $full -- setting 1"
            $newVersion = 1
        }
    } else {
        $newVersion = [int]$oldVersion + 1
        Write-Host "New version for $full : $newVersion"
    }

    $asJson['port-version'] = $newVersion

    $content = ConvertTo-Json $asJson -Depth 100
    Set-Content -Path $new -Value $content
    .\vcpkg.exe format-manifest $new
}

Get-ChildItem ports\CONTROL -Recurse | Foreach-Object {
    Convert-Control $_.FullName
}

git commit -am "this message"
.\vcpkg.exe x-add-version -all
git commit -a --amend
```
2021-09-09 01:24:04 -07:00
Christoph Neuhauser
64f20adbd6
[vulkan-headers, vulkan-hpp ,vulkan-memory-allocator] Update to the latestion version (#18976)
* Updated vulkan-headers, vulkan-hpp and vulkan-memory-allocator to new versions.

* Updated the port ashes to fix compilation errors with the new Vulkan headers. Added vk_video/ to the list of copied header files in the port vulkan-headers.

* Apply suggestions from code review regarding version strings

Update version strings in ports/ashes/vcpkg.json and ports/vulkan-headers/vcpkg.json.

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* Updated versioning information of modified ports.

* Update version strings after changes in vcpkg.json files.

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-07-22 14:25:45 -07:00
Billy O'Neal
09a647a526
Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065) 2020-10-28 14:18:07 -07:00
Jeremie St-Amand
ce6df30a57
[vulkan-memory-allocator] Update to version 2.3.0 (#9975) 2020-02-08 21:36:33 -08:00
Robert Schumacher
33af90d42a
[many ports] Updates 2019.05.19 (#6524) 2019-05-21 21:00:24 -07:00
Jens Weggemann
611b87955b [vulkan-memory-allocator] Initial port for release 2.1.0 (#4482)
* [vulkan-memory-allocator] Initial port for release 2.1.0

Port for https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator, current release 2.1.0.

* [vulkan-memory-allocator] Simplification; avoid usage file if not required. Use unofficial- prefix for targets.
2018-10-16 10:05:57 -07:00