stw: add some no-op functions for GL_EXT_dsa, GL_NV_half_float
authorBrian Paul <brianp@vmware.com>
Tue, 16 Jun 2015 21:32:46 +0000 (15:32 -0600)
committerBrian Paul <brianp@vmware.com>
Fri, 19 Jun 2015 14:45:00 +0000 (08:45 -0600)
commit8d005a643ed94c1871ec854bc069366cdda6581f
treefeeecfc69ec865034434585a0ea30620d3a8384e
parenteee9247018d710659f14678715a85e4ad6f54366
stw: add some no-op functions for GL_EXT_dsa, GL_NV_half_float

Viewperf 12 calls wglGetProcAddress() to get pointers to some unsupported
DSA and half-float functions.  We return NULL but Viewperf doesn't check
for null before trying to jump through the pointer.  That causes a crash.

This patch adds no-op functions to call instead (used by the next patch).
This avoids the crash but the rendering is incorrect.

Some DSA functions are being added to Mesa at this time so we may be
able to remove some of these no-ops in the future.

More no-op functions may be added as needed.

VMware PR1383421

Reviewed-by: José Fonseca <jfonseca@vmware.com>
src/gallium/state_trackers/wgl/Makefile.sources
src/gallium/state_trackers/wgl/stw_nopfuncs.c [new file with mode: 0644]
src/gallium/state_trackers/wgl/stw_nopfuncs.h [new file with mode: 0644]