swc

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.nihaljere.xyz/swc
Log | Files | Refs | README | LICENSE

commit 69d843060d7a965c96db0046dc5b6dc1fa75cc6b
parent 4b382ea2e0f88509a9b691cd6db956397e5ba8f6
Author: Michael Forney <mforney@mforney.org>
Date:   Wed, 11 Sep 2013 15:06:09 -0700

drm: Remove BLT check

Diffstat:
Mlibswc/drm.c | 12------------
1 file changed, 0 insertions(+), 12 deletions(-)

diff --git a/libswc/drm.c b/libswc/drm.c @@ -201,18 +201,6 @@ bool swc_drm_initialize(struct swc_drm * drm, struct udev * udev, goto error_device; } - { - int value, ret; - struct drm_i915_getparam getparam = { - .param = I915_PARAM_HAS_BLT, - .value = &value - }; - - ret = drmIoctl(drm->fd, DRM_IOCTL_I915_GETPARAM, &getparam); - - printf("has blt: %u\n", ret); - } - if (!(drm->context = wld_drm_create_context(drm->fd))) { fprintf(stderr, "Could not create WLD DRM context\n");