blob: 9786ee936505cba4ca2c48ecfc7cc1a4e467a654 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
 | 
#ifndef INTEL_DRM_WINSYS_H
#define INTEL_DRM_WINSYS_H
#include "i915/intel_batchbuffer.h"
#include "drm.h"
#include "intel_bufmgr.h"
/*
 * Winsys
 */
struct intel_drm_winsys
{
   struct intel_winsys base;
   boolean dump_cmd;
   int fd; /**< Drm file discriptor */
   unsigned id;
   size_t max_batch_size;
   struct {
      drm_intel_bufmgr *gem;
   } pools;
};
static INLINE struct intel_drm_winsys *
intel_drm_winsys(struct intel_winsys *iws)
{
   return (struct intel_drm_winsys *)iws;
}
struct intel_drm_winsys * intel_drm_winsys_create(int fd, unsigned pci_id);
struct pipe_fence_handle * intel_drm_fence_create(drm_intel_bo *bo);
void intel_drm_winsys_init_batchbuffer_functions(struct intel_drm_winsys *idws);
void intel_drm_winsys_init_buffer_functions(struct intel_drm_winsys *idws);
void intel_drm_winsys_init_fence_functions(struct intel_drm_winsys *idws);
/*
 * Buffer
 */
struct intel_drm_buffer {
   unsigned magic;
   drm_intel_bo *bo;
   void *ptr;
   unsigned map_count;
   boolean map_gtt;
   boolean flinked;
   unsigned flink;
};
static INLINE struct intel_drm_buffer *
intel_drm_buffer(struct intel_buffer *buffer)
{
   return (struct intel_drm_buffer *)buffer;
}
static INLINE drm_intel_bo *
intel_bo(struct intel_buffer *buffer)
{
   return intel_drm_buffer(buffer)->bo;
}
#endif
 |