[Mesa-dev] [PATCH 03/15] st/vdpau: Avoid constness cast warnings.

Jose Fonseca jfonseca at vmware.com
Fri Mar 20 06:59:29 PDT 2015


Fixes MSVC

  warning C4090: '=' : different 'const' qualifiers
---
 src/mesa/state_tracker/st_vdpau.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/state_tracker/st_vdpau.c b/src/mesa/state_tracker/st_vdpau.c
index 6ccaf3e..63af119 100644
--- a/src/mesa/state_tracker/st_vdpau.c
+++ b/src/mesa/state_tracker/st_vdpau.c
@@ -66,7 +66,7 @@ st_vdpau_map_surface(struct gl_context *ctx, GLenum target, GLenum access,
    struct pipe_sampler_view templ, **sampler_view;
    mesa_format texFormat;
 
-   getProcAddr = ctx->vdpGetProcAddress;
+   getProcAddr = (void *)ctx->vdpGetProcAddress;
    if (output) {
       VdpOutputSurfaceGallium *f;
       
-- 
2.1.0



More information about the mesa-dev mailing list