mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
mesa/st: don't advertise NV_vdpau_interop if it doesn't work.
As long as we don't have a workaround for frame based decoding in VDPAU we should not advertise NV_vdpau_interop. v2: fix commit message, check if get_video_param is present Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu> Cc: mesa-stable@lists.freedesktop.org
This commit is contained in:
parent
a3306f028e
commit
12fb74fe89
1 changed files with 7 additions and 1 deletions
|
|
@ -620,7 +620,6 @@ void st_init_extensions(struct pipe_screen *screen,
|
|||
extensions->NV_fog_distance = GL_TRUE;
|
||||
extensions->NV_texture_env_combine4 = GL_TRUE;
|
||||
extensions->NV_texture_rectangle = GL_TRUE;
|
||||
extensions->NV_vdpau_interop = GL_TRUE;
|
||||
|
||||
extensions->OES_EGL_image = GL_TRUE;
|
||||
extensions->OES_EGL_image_external = GL_TRUE;
|
||||
|
|
@ -885,4 +884,11 @@ void st_init_extensions(struct pipe_screen *screen,
|
|||
PIPE_BIND_SAMPLER_VIEW)) {
|
||||
extensions->ARB_ES3_compatibility = GL_TRUE;
|
||||
}
|
||||
|
||||
if (screen->get_video_param &&
|
||||
screen->get_video_param(screen, PIPE_VIDEO_PROFILE_UNKNOWN,
|
||||
PIPE_VIDEO_ENTRYPOINT_BITSTREAM,
|
||||
PIPE_VIDEO_CAP_SUPPORTS_INTERLACED)) {
|
||||
extensions->NV_vdpau_interop = GL_TRUE;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue