diff options
author | Chia-I Wu <[email protected]> | 2015-03-07 13:31:52 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2015-05-02 22:14:06 +0800 |
commit | 9b7080c8b35b02b16f58fb8b869b45de9857e8e5 (patch) | |
tree | 32525ddaf04260f4616343e9d6b8ba32d06a6d92 /src/gallium/drivers/ilo/ilo_screen.h | |
parent | 2182beb431a3e866022fb76199a5a58dfb23d1e4 (diff) |
ilo: add ilo_fence.h to core
Implement pipe_fence_handle on top of ilo_fence.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_screen.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_screen.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/gallium/drivers/ilo/ilo_screen.h b/src/gallium/drivers/ilo/ilo_screen.h index 9d53af991aa..612f4c97022 100644 --- a/src/gallium/drivers/ilo/ilo_screen.h +++ b/src/gallium/drivers/ilo/ilo_screen.h @@ -48,13 +48,7 @@ ilo_screen(struct pipe_screen *screen) return (struct ilo_screen *) screen; } -static inline struct ilo_fence * -ilo_fence(struct pipe_fence_handle *fence) -{ - return (struct ilo_fence *) fence; -} - -struct ilo_fence * -ilo_fence_create(struct pipe_screen *screen, struct intel_bo *bo); +struct pipe_fence_handle * +ilo_screen_fence_create(struct pipe_screen *screen, struct intel_bo *bo); #endif /* ILO_SCREEN_H */ |