mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-23 06:13:04 +00:00
lib/drmtest: extract gem_write
Astonishing how many different function signatures are possible for something that simple. Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
@@ -64,22 +64,6 @@ static uint32_t gem_create(int fd, int size, int *retval)
|
||||
return create.handle;
|
||||
}
|
||||
|
||||
static void gem_write(int fd,
|
||||
uint32_t handle, uint32_t offset,
|
||||
const void *src, int length)
|
||||
{
|
||||
struct drm_i915_gem_pwrite arg;
|
||||
int ret;
|
||||
|
||||
arg.handle = handle;
|
||||
arg.offset = offset;
|
||||
arg.size = length;
|
||||
arg.data_ptr = (uintptr_t)src;
|
||||
|
||||
ret = drmIoctl(fd, DRM_IOCTL_I915_GEM_PWRITE, &arg);
|
||||
assert(ret == 0);
|
||||
}
|
||||
|
||||
static int gem_exec(int fd, struct drm_i915_gem_execbuffer2 *execbuf)
|
||||
{
|
||||
return drmIoctl(fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, execbuf);
|
||||
|
||||
Reference in New Issue
Block a user