Skip to content

Commit 254f6f5

Browse files
bors[bot]kvark
andcommitted
Merge #181
181: vkQuake3 screenshot r=kvark a=kvark This is mostly trivial, allows us to launch vkQuake3 🎉 Co-authored-by: Dzmitry Malyshau <[email protected]>
2 parents f4defcd + 53cc04f commit 254f6f5

File tree

5 files changed

+16
-18
lines changed

5 files changed

+16
-18
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,20 @@ This is a prototype library implementing [Vulkan Portability Initiative](https:/
99
### [Dota2](https://github.com/ValveSoftware/Dota-2):
1010
![Dota2](etc/dota2-river.jpg)
1111

12-
### [VkQuake](https://github.com/Novum/vkQuake)
13-
![VkQuake](etc/quake-main.jpg)
12+
### Quake
13+
- [vkQuake](https://github.com/Novum/vkQuake)
14+
- [vkQuake2](https://github.com/kondrak/vkQuake2)
15+
- [vkQuake3](https://github.com/suijingfeng/vkQuake3)
16+
17+
![VkQuake](etc/quake-main.jpg) ![VkQuake3](etc/quake3-main.jpg)
1418

1519
### [RPCS3](https://github.com/RPCS3/rpcs3):
16-
![RPCS3-cube](etc/rpcs3-cube.jpg)
17-
![RPCS3-scogger](etc/rpcs3-scogger.jpg)
20+
21+
![RPCS3-cube](etc/rpcs3-cube.jpg) ![RPCS3-scogger](etc/rpcs3-scogger.jpg)
1822

1923
### [Dolphin](https://github.com/dolphin-emu):
20-
![Dolphin-sb](etc/dolphin-smash-bros.png)
21-
![Dolphin-pm](etc/dolphin-paper-mario.png)
22-
![Dolphin-mk](etc/dolphin-mario-kart.jpg)
23-
![Dolphin-md](etc/dolphin-metroid.jpg)
24+
![Dolphin-sb](etc/dolphin-smash-bros.png) ![Dolphin-pm](etc/dolphin-paper-mario.png)
25+
![Dolphin-mk](etc/dolphin-mario-kart.jpg) ![Dolphin-md](etc/dolphin-metroid.jpg)
2426

2527
## Instructions
2628

etc/quake3-main.jpg

636 KB
Loading

libportability-gfx/src/impls.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1728,9 +1728,6 @@ pub extern "C" fn gfxCreateImageView(
17281728
pView: *mut VkImageView,
17291729
) -> VkResult {
17301730
let info = unsafe { &*pCreateInfo };
1731-
assert!(info.subresourceRange.levelCount != VK_REMAINING_MIP_LEVELS as _); // TODO
1732-
assert!(info.subresourceRange.layerCount != VK_REMAINING_ARRAY_LAYERS as _); // TODO
1733-
17341731
let view = unsafe {
17351732
gpu.device.create_image_view(
17361733
&info.image.raw,

libportability-icd/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![allow(non_snake_case)]
22

3-
#[macro_use]
43
extern crate portability_gfx;
54

65
use portability_gfx::*;

0 commit comments

Comments
 (0)