~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/gallium/drivers/nouveau/nouveau_fence.h

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
   struct nouveau_fence *next;
25
25
   struct nouveau_screen *screen;
26
26
   struct nouveau_context *context;
 
27
   struct nouveau_bo *bo;
27
28
   int state;
28
29
   int ref;
29
30
   uint32_t sequence;
37
38
   uint32_t sequence;
38
39
   uint32_t sequence_ack;
39
40
   simple_mtx_t lock;
40
 
   void (*emit)(struct pipe_context *, uint32_t *sequence);
 
41
   void (*emit)(struct pipe_context *, uint32_t *sequence, struct nouveau_bo *wait);
41
42
   uint32_t (*update)(struct pipe_screen *);
42
43
};
43
44