The drm_intel_gem_bo_map_gtt() call that replaced dri_bo_map() is
producing errors like:
intel_bufmgr_gem.c:689: Error preparing buffer map 39 (vp_const_buffer): Invalid argument .
and returning NULL, causing a segfault in the memcpy().
Just reverting until we can get to the root issue...
assert(const_buffer);
assert(const_buffer->size >= size);
- drm_intel_gem_bo_map_gtt(const_buffer);
+ dri_bo_map(const_buffer, GL_TRUE);
map = const_buffer->virtual;
memcpy(map, params->ParameterValues, size);
- drm_intel_gem_bo_unmap_gtt(const_buffer);
+ dri_bo_unmap(const_buffer);
if (0) {
int i;