summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/ilo/intel_winsys.h
Commit message (Collapse)AuthorAgeFilesLines
* ilo: move intel_winsys.h to coreChia-I Wu2015-05-021-329/+0
| | | | | Add a new subdirectory and start moving files that do not depend on ilo_screen/ilo_context to it.
* ilo: add more convenient intel_bo_{ref,unref}()Chia-I Wu2015-03-061-5/+5
| | | | | They both check for NULL and intel_bo_ref() returns the referenced bo. They replace intel_bo_{reference,unreference}().
* ilo: add intel_bo_set_tiling()Chia-I Wu2015-03-061-25/+15
| | | | | Make intel_winsys_alloc_bo() always allocate a linear bo, and add intel_bo_set_tiling() to set the tiling. Document the purpose of tiling.
* ilo: add some more winsys functionsChia-I Wu2015-03-041-1/+29
| | | | | | Add intel_winsys_get_reset_stats(), intel_winsys_import_userptr(), and intel_bo_map_async(). The latter two are stubs, but we are not going to use them immediately either.
* gallium/ilo: cleanup intel_winsys.hEmil Velikov2014-08-281-0/+311
Make the header location, inclusion and contents more common with its i915,r* and nouveau counterparts: - Move the header within drivers/ilo. - Separate out intel_winsys_create_for_fd into 'drm_public' header. - Cleanup the compiler includes. v2: Move the header to drivers/ilo. Suggested by Chia-I. v3: Correct intel_winsys.h inclusion. Spotted by Chia-I. Cc: Chia-I Wu <[email protected]> Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Chia-I Wu <[email protected]>