summaryrefslogtreecommitdiff
path: root/gsk/gl/gskglprogramprivate.h
blob: 6bfbe48f024cc0c615e0c9ace115d91aa5401331 (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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/* gskglprogramprivate.h
 *
 * Copyright 2020 Christian Hergert <chergert@redhat.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#pragma once

#include "gskgltypesprivate.h"

#include "gskglattachmentstateprivate.h"
#include "gskglcommandqueueprivate.h"
#include "gskgldriverprivate.h"

G_BEGIN_DECLS

#define GSK_TYPE_GL_PROGRAM (gsk_gl_program_get_type())
#define GSK_GL_PROGRAM_MAX_CUSTOM_TEXTURES 4
#define GSK_GL_PROGRAM_MAX_CUSTOM_ARGS 8

G_DECLARE_FINAL_TYPE (GskGLProgram, gsk_gl_program, GSK, GL_PROGRAM, GObject)

struct _GskGLProgram
{
  GObject parent_instance;

  int id;
  char *name;
  GskGLDriver *driver;

  /* Cached pointer to avoid lots of pointer chasing/lookups */
  GskGLUniformState *uniforms;
  GskGLUniformProgram *program_info;

  /* Static array for key->location transforms */
  GskGLUniformMapping mappings[32];
  guint n_mappings;
};

GskGLProgram * gsk_gl_program_new            (GskGLDriver  *driver,
                                              const char   *name,
                                              int           program_id);
gboolean       gsk_gl_program_add_uniform    (GskGLProgram *self,
                                              const char   *name,
                                              guint         key);
void           gsk_gl_program_uniforms_added (GskGLProgram *self,
                                              gboolean      has_attachments);
void           gsk_gl_program_delete         (GskGLProgram *self);

static inline void
gsk_gl_program_set_uniform1fv (GskGLProgram *self,
                               guint         key,
                               guint         stamp,
                               guint         count,
                               const float  *values)
{
  gsk_gl_uniform_state_set1fv (self->uniforms, self->program_info,
                               key,
                               stamp,
                               count,
                               values);
}

static inline void
gsk_gl_program_set_uniform2fv (GskGLProgram *self,
                               guint         key,
                               guint         stamp,
                               guint         count,
                               const float  *values)
{
  gsk_gl_uniform_state_set2fv (self->uniforms, self->program_info,
                               key,
                               stamp,
                               count,
                               values);
}

static inline void
gsk_gl_program_set_uniform4fv (GskGLProgram *self,
                               guint         key,
                               guint         stamp,
                               guint         count,
                               const float  *values)
{
  gsk_gl_uniform_state_set4fv (self->uniforms, self->program_info,
                               key,
                               stamp,
                               count,
                               values);
}

static inline void
gsk_gl_program_set_uniform_rounded_rect (GskGLProgram         *self,
                                         guint                 key,
                                         guint                 stamp,
                                         const GskRoundedRect *rounded_rect)
{
  gsk_gl_uniform_state_set_rounded_rect (self->uniforms, self->program_info,
                                         key,
                                         stamp,
                                         rounded_rect);
}

static inline void
gsk_gl_program_set_uniform1i (GskGLProgram *self,
                              guint         key,
                              guint         stamp,
                              int           value0)
{
  gsk_gl_uniform_state_set1i (self->uniforms,
                              self->program_info,
                              key,
                              stamp,
                              value0);
}

static inline void
gsk_gl_program_set_uniform2i (GskGLProgram *self,
                              guint         key,
                              guint         stamp,
                              int           value0,
                              int           value1)
{
  gsk_gl_uniform_state_set2i (self->uniforms,
                              self->program_info,
                              key,
                              stamp,
                              value0, value1);
}

static inline void
gsk_gl_program_set_uniform3i (GskGLProgram *self,
                              guint         key,
                              guint         stamp,
                              int           value0,
                              int           value1,
                              int           value2)
{
  gsk_gl_uniform_state_set3i (self->uniforms,
                              self->program_info,
                              key,
                              stamp,
                              value0, value1, value2);
}

static inline void
gsk_gl_program_set_uniform4i (GskGLProgram *self,
                              guint         key,
                              guint         stamp,
                              int           value0,
                              int           value1,
                              int           value2,
                              int           value3)
{
  gsk_gl_uniform_state_set4i (self->uniforms,
                              self->program_info,
                              key,
                              stamp,
                              value0, value1, value2, value3);
}

static inline void
gsk_gl_program_set_uniform1f (GskGLProgram *self,
                              guint         key,
                              guint         stamp,
                              float         value0)
{
  gsk_gl_uniform_state_set1f (self->uniforms,
                              self->program_info,
                              key,
                              stamp,
                              value0);
}

static inline void
gsk_gl_program_set_uniform2f (GskGLProgram *self,
                              guint         key,
                              guint         stamp,
                              float         value0,
                              float         value1)
{
  gsk_gl_uniform_state_set2f (self->uniforms,
                              self->program_info,
                              key,
                              stamp,
                              value0, value1);
}

static inline void
gsk_gl_program_set_uniform3f (GskGLProgram *self,
                              guint         key,
                              guint         stamp,
                              float         value0,
                              float         value1,
                              float         value2)
{
  gsk_gl_uniform_state_set3f (self->uniforms,
                              self->program_info,
                              key,
                              stamp,
                              value0, value1, value2);
}

static inline void
gsk_gl_program_set_uniform4f (GskGLProgram *self,
                              guint         key,
                              guint         stamp,
                              float         value0,
                              float         value1,
                              float         value2,
                              float         value3)
{
  gsk_gl_uniform_state_set4f (self->uniforms,
                              self->program_info,
                              key,
                              stamp,
                              value0, value1, value2, value3);
}

static inline void
gsk_gl_program_set_uniform_color (GskGLProgram  *self,
                                  guint          key,
                                  guint          stamp,
                                  const GdkRGBA *color)
{
  gsk_gl_uniform_state_set_color (self->uniforms,
                                  self->program_info,
                                  key,
                                  stamp,
                                  color);
}

static inline void
gsk_gl_program_set_uniform_texture_with_filter (GskGLProgram *self,
                                                guint         key,
                                                guint         stamp,
                                                GLenum        texture_target,
                                                GLenum        texture_slot,
                                                guint         texture_id,
                                                GLint         min_filter,
                                                GLint         mag_filter)
{
  gsk_gl_attachment_state_bind_texture (self->driver->command_queue->attachments,
                                        texture_target,
                                        texture_slot,
                                        texture_id,
                                        min_filter,
                                        mag_filter);
  gsk_gl_uniform_state_set_texture (self->uniforms,
                                    self->program_info,
                                    key,
                                    stamp,
                                    texture_slot);
}

static inline void
gsk_gl_program_set_uniform_texture (GskGLProgram *self,
                                    guint         key,
                                    guint         stamp,
                                    GLenum        texture_target,
                                    GLenum        texture_slot,
                                    guint         texture_id)
{
  gsk_gl_program_set_uniform_texture_with_filter (self,
                                                  key,
                                                  stamp,
                                                  texture_target,
                                                  texture_slot,
                                                  texture_id,
                                                  GL_LINEAR,
                                                  GL_LINEAR);
}

static inline void
gsk_gl_program_set_uniform_texture_with_sync (GskGLProgram *self,
                                              guint         key,
                                              guint         stamp,
                                              GLenum        texture_target,
                                              GLenum        texture_slot,
                                              guint         texture_id,
                                              GLint         min_filter,
                                              GLint         max_filter,
                                              gpointer      sync)
{
  gsk_gl_program_set_uniform_texture_with_filter (self, key, stamp, texture_target, texture_slot, texture_id,
                                                  min_filter, max_filter);
  gsk_gl_syncs_add_sync (&self->driver->command_queue->syncs, texture_id, sync);
}

static inline void
gsk_gl_program_set_uniform_matrix (GskGLProgram            *self,
                                   guint                    key,
                                   guint                    stamp,
                                   const graphene_matrix_t *matrix)
{
  gsk_gl_uniform_state_set_matrix (self->uniforms,
                                   self->program_info,
                                   key,
                                   stamp,
                                   matrix);
}

G_END_DECLS