浏览代码

Revert "i965: Make the driver compile until a proper libdrm can be released."

libdrm 2.4.48 has been released.

This reverts commit bd4596efac.

Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
tags/mesa-10.1-rc1
Ian Romanick 12 年前
父节点
当前提交
0ae8439906
共有 2 个文件被更改,包括 5 次插入10 次删除
  1. 5
    3
      src/mesa/drivers/dri/i965/brw_context.c
  2. 0
    7
      src/mesa/drivers/dri/i965/brw_reset.c

+ 5
- 3
src/mesa/drivers/dri/i965/brw_context.c 查看文件

@@ -683,10 +683,12 @@ brwCreateContext(gl_api api,
}

/* Notification of GPU resets requires hardware contexts and a kernel new
* enough to support DRM_IOCTL_I915_GET_RESET_STATS, which isn't upstream
* yet.
* enough to support DRM_IOCTL_I915_GET_RESET_STATS.
*/
if (notify_reset) {
if (notify_reset &&
(brw->hw_ctx == NULL
|| drm_intel_get_reset_stats(brw->hw_ctx, &brw->reset_count, NULL,
NULL))) {
/* This is the wrong error code, but the correct error code (one that
* will cause EGL to generate EGL_BAD_MATCH) doesn't seem to exist.
*/

+ 0
- 7
src/mesa/drivers/dri/i965/brw_reset.c 查看文件

@@ -42,17 +42,10 @@ brw_get_graphics_reset_status(struct gl_context *ctx)
*/
assert(brw->hw_ctx != NULL);

#if 0
/* This is waiting until the kernel code can be merged and a new libdrm
* actually released.
*/
err = drm_intel_get_reset_stats(brw->hw_ctx, &reset_count, &active,
&pending);
if (err)
return GL_NO_ERROR;
#else
return GL_NO_ERROR;
#endif

/* A reset was observed while a batch from this context was executing.
* Assume that this context was at fault.

正在加载...
取消
保存