swr: [rasterizer jitter] fetch support for offsetting VertexID
[mesa.git] / src / gallium / drivers / swr / swr_fence.h
1 /****************************************************************************
2 * Copyright (C) 2015 Intel Corporation. All Rights Reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 ***************************************************************************/
21
22 #ifndef SWR_FENCE_H
23 #define SWR_FENCE_H
24
25 #include "pipe/p_state.h"
26 #include "util/u_inlines.h"
27
28 struct pipe_screen;
29
30 struct swr_fence {
31 struct pipe_reference reference;
32
33 uint64_t read;
34 uint64_t write;
35
36 unsigned pending;
37
38 unsigned id; /* Just for reference */
39 };
40
41
42 static inline struct swr_fence *
43 swr_fence(struct pipe_fence_handle *fence)
44 {
45 return (struct swr_fence *)fence;
46 }
47
48
49 static INLINE boolean
50 swr_is_fence_done(struct pipe_fence_handle *fence_handle)
51 {
52 struct swr_fence *fence = swr_fence(fence_handle);
53 return (fence->read == fence->write);
54 }
55
56 static INLINE boolean
57 swr_is_fence_pending(struct pipe_fence_handle *fence_handle)
58 {
59 return swr_fence(fence_handle)->pending;
60 }
61
62
63 void swr_fence_init(struct pipe_screen *screen);
64
65 struct pipe_fence_handle *swr_fence_create();
66
67 void swr_fence_reference(struct pipe_screen *screen,
68 struct pipe_fence_handle **ptr,
69 struct pipe_fence_handle *f);
70
71 boolean swr_fence_finish(struct pipe_screen *screen,
72 struct pipe_context *ctx,
73 struct pipe_fence_handle *fence_handle,
74 uint64_t timeout);
75
76 void
77 swr_fence_submit(struct swr_context *ctx, struct pipe_fence_handle *fence);
78
79 uint64_t swr_get_timestamp(struct pipe_screen *screen);
80
81 #endif