mirror of
https://github.com/jojo61/vdr-plugin-softhdcuvid.git
synced 2023-10-10 13:37:41 +02:00
Support libplacebo API 229
This commit is contained in:
parent
58c39d51f4
commit
7b41b9b45a
4
video.c
4
video.c
@ -4412,7 +4412,7 @@ static void CuvidDisplayFrame(void) {
|
||||
if (posd) {
|
||||
pl_tex_upload(p->gpu, &(struct pl_tex_transfer_params){
|
||||
// upload OSD
|
||||
#if PL_API_VER > 229
|
||||
#if PL_API_VER >= 229
|
||||
.tex = osdoverlay.tex,
|
||||
#else
|
||||
.tex = osdoverlay.plane.texture,
|
||||
@ -5723,7 +5723,7 @@ void exit_display() {
|
||||
return;
|
||||
}
|
||||
pl_gpu_finish(p->gpu);
|
||||
#if PL_API_VER > 229
|
||||
#if PL_API_VER >= 229
|
||||
if (osdoverlay.tex)
|
||||
pl_tex_destroy(p->gpu, &osdoverlay.tex);
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user