diff options
author | Brian Paul <[email protected]> | 2015-12-03 09:12:20 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-12-03 09:12:20 -0700 |
commit | e832b5b7fa196853bc61895869bd20c8b85f0ea9 (patch) | |
tree | 732d0ae1817d473f225dadd47d6ae290081a5af2 /src/gallium/state_trackers/wgl/Makefile.sources | |
parent | 47b9ef872b70066756e004a6dd52482ea2899d43 (diff) |
st/wgl: add support for WGL_ARB_render_texture
There are a few legacy OpenGL apps on Windows which need this extension.
We basically use glCopyTex[Sub]Image to implement wglBindTexImageARB (see
the implementation notes for details).
v2: refactor code to use st_copy_framebuffer_to_texture() helper function.
Reviewed-by: José Fonseca <[email protected]>
Reviewed-by: Charmaine Lee <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/wgl/Makefile.sources')
-rw-r--r-- | src/gallium/state_trackers/wgl/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/wgl/Makefile.sources b/src/gallium/state_trackers/wgl/Makefile.sources index 1e00caf97b7..2630b445d54 100644 --- a/src/gallium/state_trackers/wgl/Makefile.sources +++ b/src/gallium/state_trackers/wgl/Makefile.sources @@ -5,6 +5,7 @@ C_SOURCES := \ stw_ext_extensionsstring.c \ stw_ext_pbuffer.c \ stw_ext_pixelformat.c \ + stw_ext_rendertexture.c \ stw_ext_swapinterval.c \ stw_framebuffer.c \ stw_getprocaddress.c \ |