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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
/*
* Copyright © 2012 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#ifndef _GLTHREAD_H
#define _GLTHREAD_H
#include "main/mtypes.h"
/* Command size is a number of bytes stored in a short. */
#define MARSHAL_MAX_CMD_SIZE 65535
#ifdef HAVE_PTHREAD
#include <inttypes.h>
#include <stdbool.h>
#include <pthread.h>
enum marshal_dispatch_cmd_id;
struct glthread_state
{
/** The worker thread that asynchronously processes our GL commands. */
pthread_t thread;
/**
* Mutex used for synchronizing between the main thread and the worker
* thread.
*/
pthread_mutex_t mutex;
/** Condvar used for waking the worker thread. */
pthread_cond_t new_work;
/** Condvar used for waking the main thread. */
pthread_cond_t work_done;
/** Used to tell the worker thread to quit */
bool shutdown;
/** Indicates that the worker thread is currently processing a batch */
bool busy;
/**
* Singly-linked list of command batches that are awaiting execution by
* a thread pool task. NULL if empty.
*/
struct glthread_batch *batch_queue;
/**
* Tail pointer for appending batches to the end of batch_queue. If the
* queue is empty, this points to batch_queue.
*/
struct glthread_batch **batch_queue_tail;
/**
* Batch containing commands that are being prepared for insertion into
* batch_queue. NULL if there are no such commands.
*
* Since this is only used by the main thread, it doesn't need the mutex to
* be accessed.
*/
struct glthread_batch *batch;
/**
* Tracks on the main thread side whether the current vertex array binding
* is in a VBO.
*/
bool vertex_array_is_vbo;
/**
* Tracks on the main thread side whether the current element array (index
* buffer) binding is in a VBO.
*/
bool element_array_is_vbo;
};
/**
* A single batch of commands queued up for later execution by a thread pool
* task.
*/
struct glthread_batch
{
/**
* Next batch of commands to execute after this batch, or NULL if this is
* the last set of commands queued. Protected by ctx->Marshal.Mutex.
*/
struct glthread_batch *next;
/**
* Amount of data used by batch commands, in bytes.
*/
size_t used;
/**
* Data contained in the command buffer.
*/
uint8_t buffer[MARSHAL_MAX_CMD_SIZE];
};
void _mesa_glthread_init(struct gl_context *ctx);
void _mesa_glthread_destroy(struct gl_context *ctx);
void _mesa_glthread_restore_dispatch(struct gl_context *ctx);
void _mesa_glthread_flush_batch(struct gl_context *ctx);
void _mesa_glthread_finish(struct gl_context *ctx);
#else /* HAVE_PTHREAD */
static inline void
_mesa_glthread_init(struct gl_context *ctx)
{
}
static inline void
_mesa_glthread_destroy(struct gl_context *ctx)
{
}
static inline void
_mesa_glthread_finish(struct gl_context *ctx)
{
}
static inline void
_mesa_glthread_restore_dispatch(struct gl_context *ctx)
{
}
static inline void
_mesa_glthread_flush_batch(struct gl_context *ctx)
{
}
#endif /* !HAVE_PTHREAD */
#endif /* _GLTHREAD_H*/
|