mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 07:48:07 +02:00
i965/drm: Move _drm_bacon_context to intel_bufmgr_gem.c.
This moves us one step closer to killing off intel_bufmgr_priv.h. We might want to nuke it altogether, since it's basically just a uint32_t handle, but for now, let's focus on removing files. Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Acked-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
b0d1c5983b
commit
3673b89bf3
2 changed files with 5 additions and 5 deletions
|
|
@ -107,6 +107,11 @@ atomic_add_unless(int *v, int add, int unless)
|
|||
*/
|
||||
#define lower_32_bits(n) ((__u32)(n))
|
||||
|
||||
struct _drm_bacon_context {
|
||||
unsigned int ctx_id;
|
||||
struct _drm_bacon_bufmgr *bufmgr;
|
||||
};
|
||||
|
||||
typedef struct _drm_bacon_bo_gem drm_bacon_bo_gem;
|
||||
|
||||
struct drm_bacon_gem_bo_bucket {
|
||||
|
|
|
|||
|
|
@ -42,9 +42,4 @@
|
|||
struct _drm_bacon_bufmgr {
|
||||
};
|
||||
|
||||
struct _drm_bacon_context {
|
||||
unsigned int ctx_id;
|
||||
struct _drm_bacon_bufmgr *bufmgr;
|
||||
};
|
||||
|
||||
#endif /* INTEL_BUFMGR_PRIV_H */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue