mirror of
https://github.com/keylase/nvidia-patch.git
synced 2024-11-09 19:48:20 +00:00
win: add vulkan driver
This commit is contained in:
parent
9c63b1c38f
commit
75e0a3df96
18
drivers.json
18
drivers.json
@ -1596,6 +1596,24 @@
|
|||||||
"patch64_url": "win7_x64/446.14/nvencodeapi64.1337",
|
"patch64_url": "win7_x64/446.14/nvencodeapi64.1337",
|
||||||
"patch32_url": "win7_x64/446.14/nvencodeapi.1337",
|
"patch32_url": "win7_x64/446.14/nvencodeapi.1337",
|
||||||
"driver_url": "https://international.download.nvidia.com/Windows/446.14/446.14-desktop-win8-win7-64bit-international-whql.exe"
|
"driver_url": "https://international.download.nvidia.com/Windows/446.14/446.14-desktop-win8-win7-64bit-international-whql.exe"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"os": "win10",
|
||||||
|
"product": "GeForce",
|
||||||
|
"version": "443.41",
|
||||||
|
"variant": "Vulkan Beta",
|
||||||
|
"patch64_url": "win10_x64/443.41/nvencodeapi64.1337",
|
||||||
|
"patch32_url": "win10_x64/443.41/nvencodeapi.1337",
|
||||||
|
"driver_url": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"os": "win7",
|
||||||
|
"product": "GeForce",
|
||||||
|
"version": "443.41",
|
||||||
|
"variant": "Vulkan Beta",
|
||||||
|
"patch64_url": "win7_x64/443.41/nvencodeapi64.1337",
|
||||||
|
"patch32_url": "win7_x64/443.41/nvencodeapi.1337",
|
||||||
|
"driver_url": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -93,17 +93,17 @@ def validate_url(url):
|
|||||||
raise Exception("Bad driver length: %s" % resp.headers['Content-Length'])
|
raise Exception("Bad driver length: %s" % resp.headers['Content-Length'])
|
||||||
|
|
||||||
def validate_patch(patch64, patch32):
|
def validate_patch(patch64, patch32):
|
||||||
wc_base = os.path.abspath(os.path.join(BASE_PATH, "..", ".."))
|
wc_base = os.path.abspath(os.path.join(BASE_PATH, "..", "..", "win"))
|
||||||
p64_filepath = os.path.join(wc_base, patch64)
|
p64_filepath = os.path.join(wc_base, patch64)
|
||||||
p32_filepath = os.path.join(wc_base, patch32)
|
p32_filepath = os.path.join(wc_base, patch32)
|
||||||
if not os.path.exists(p64_filepath):
|
if not os.path.exists(p64_filepath):
|
||||||
raise Exception("File %s not found!" % patch64_filepath)
|
raise Exception("File %s not found!" % p64_filepath)
|
||||||
if not os.path.exists(p32_filepath):
|
if not os.path.exists(p32_filepath):
|
||||||
raise Exception("File %s not found!" % patch32_filepath)
|
raise Exception("File %s not found!" % p32_filepath)
|
||||||
if os.path.getsize(p64_filepath) == 0:
|
if os.path.getsize(p64_filepath) == 0:
|
||||||
raise Exception("File %s empty!" % patch64_filepath)
|
raise Exception("File %s empty!" % p64_filepath)
|
||||||
if os.path.exists(p32_filepath) == 0:
|
if os.path.exists(p32_filepath) == 0:
|
||||||
raise Exception("File %s empty!" % patch32_filepath)
|
raise Exception("File %s empty!" % p32_filepath)
|
||||||
|
|
||||||
def validate_unique(drivers, new_driver, kf):
|
def validate_unique(drivers, new_driver, kf):
|
||||||
if find_driver(drivers, kf(new_driver), kf) is not None:
|
if find_driver(drivers, kf(new_driver), kf) is not None:
|
||||||
|
@ -112,6 +112,7 @@ Credits to [TroubleChute channel](https://www.youtube.com/channel/UCkih2oVTbXPEp
|
|||||||
| GeForce | 443.09 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.09/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.09/nvencodeapi.1337) | |
|
| GeForce | 443.09 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.09/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.09/nvencodeapi.1337) | |
|
||||||
| GeForce | 443.15 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.15/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.15/nvencodeapi.1337) | |
|
| GeForce | 443.15 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.15/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.15/nvencodeapi.1337) | |
|
||||||
| GeForce | 443.24 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.24/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.24/nvencodeapi.1337) | |
|
| GeForce | 443.24 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.24/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.24/nvencodeapi.1337) | |
|
||||||
|
| GeForce | 443.41 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.41/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/443.41/nvencodeapi.1337) | |
|
||||||
| GeForce | 445.75 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/445.75/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/445.75/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/445.75/445.75-desktop-win10-64bit-international-whql.exe) |
|
| GeForce | 445.75 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/445.75/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/445.75/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/445.75/445.75-desktop-win10-64bit-international-whql.exe) |
|
||||||
| GeForce | 445.87 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/445.87/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/445.87/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/445.87/445.87-desktop-win10-64bit-international-whql.exe) |
|
| GeForce | 445.87 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/445.87/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/445.87/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/445.87/445.87-desktop-win10-64bit-international-whql.exe) |
|
||||||
| GeForce | 446.14 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/446.14/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/446.14/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/446.14/446.14-desktop-win10-64bit-international-whql.exe) |
|
| GeForce | 446.14 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/446.14/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win10_x64/446.14/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/446.14/446.14-desktop-win10-64bit-international-whql.exe) |
|
||||||
@ -173,6 +174,7 @@ Credits to [TroubleChute channel](https://www.youtube.com/channel/UCkih2oVTbXPEp
|
|||||||
| GeForce | 443.09 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.09/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.09/nvencodeapi.1337) | |
|
| GeForce | 443.09 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.09/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.09/nvencodeapi.1337) | |
|
||||||
| GeForce | 443.15 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.15/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.15/nvencodeapi.1337) | |
|
| GeForce | 443.15 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.15/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.15/nvencodeapi.1337) | |
|
||||||
| GeForce | 443.24 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.24/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.24/nvencodeapi.1337) | |
|
| GeForce | 443.24 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.24/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.24/nvencodeapi.1337) | |
|
||||||
|
| GeForce | 443.41 Vulkan Beta | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.41/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/443.41/nvencodeapi.1337) | |
|
||||||
| GeForce | 445.75 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/445.75/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/445.75/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/445.75/445.75-desktop-win8-win7-64bit-international-whql.exe) |
|
| GeForce | 445.75 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/445.75/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/445.75/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/445.75/445.75-desktop-win8-win7-64bit-international-whql.exe) |
|
||||||
| GeForce | 445.87 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/445.87/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/445.87/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/445.87/445.87-desktop-win8-win7-64bit-international-whql.exe) |
|
| GeForce | 445.87 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/445.87/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/445.87/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/445.87/445.87-desktop-win8-win7-64bit-international-whql.exe) |
|
||||||
| GeForce | 446.14 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/446.14/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/446.14/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/446.14/446.14-desktop-win8-win7-64bit-international-whql.exe) |
|
| GeForce | 446.14 | [x64 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/446.14/nvencodeapi64.1337) | [x86 library patch](https://raw.githubusercontent.com/keylase/nvidia-patch/master/win/win7_x64/446.14/nvencodeapi.1337) | [Driver link](https://international.download.nvidia.com/Windows/446.14/446.14-desktop-win8-win7-64bit-international-whql.exe) |
|
||||||
|
6
win/win10_x64/443.41/nvencodeapi.1337
Normal file
6
win/win10_x64/443.41/nvencodeapi.1337
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
>nvencodeapi.dll
|
||||||
|
000000000002A5E6:89->33
|
||||||
|
000000000002A5E7:45->C0
|
||||||
|
000000000002A5E8:08->89
|
||||||
|
000000000002A5E9:85->45
|
||||||
|
000000000002A5EA:C0->08
|
5
win/win10_x64/443.41/nvencodeapi64.1337
Normal file
5
win/win10_x64/443.41/nvencodeapi64.1337
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
>nvencodeapi64.dll
|
||||||
|
000000000002ECBA:8B->33
|
||||||
|
000000000002ECBB:F0->C0
|
||||||
|
000000000002ECBC:85->8B
|
||||||
|
000000000002ECBD:C0->F0
|
5
win/win7_x64/443.41/nvencodeapi.1337
Normal file
5
win/win7_x64/443.41/nvencodeapi.1337
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
>nvencodeapi.dll
|
||||||
|
00000000000225E7:8B->33
|
||||||
|
00000000000225E8:D8->C0
|
||||||
|
00000000000225E9:85->8B
|
||||||
|
00000000000225EA:DB->D8
|
5
win/win7_x64/443.41/nvencodeapi64.1337
Normal file
5
win/win7_x64/443.41/nvencodeapi64.1337
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
>nvencodeapi64.dll
|
||||||
|
0000000000026B50:8B->33
|
||||||
|
0000000000026B51:F0->C0
|
||||||
|
0000000000026B52:85->8B
|
||||||
|
0000000000026B53:C0->F0
|
Loading…
Reference in New Issue
Block a user