summaryrefslogtreecommitdiff
path: root/src/glamor_glyphblt.c
blob: ca92100681b6be11364ac7e16dd580b9566f7bbc (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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
/*
 * Copyright © 2009 Intel Corporation
 * Copyright © 1998 Keith Packard
 *
 * 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.
 *
 * Authors:
 *    Zhigang Gong <zhigang.gong@gmail.com>
 *
 */

#include "glamor_priv.h"
#include <dixfontstr.h>

static Bool
glamor_poly_glyph_blt_pixels(DrawablePtr drawable, GCPtr gc,
			     int x, int y, unsigned int nglyph,
			     CharInfoPtr *ppci)
{
	ScreenPtr screen = drawable->pScreen;
	glamor_screen_private *glamor_priv = glamor_get_screen_private(screen);
	PixmapPtr pixmap = glamor_get_drawable_pixmap(drawable);
	glamor_pixmap_private *pixmap_priv;
	int off_x, off_y;
	GLfloat xscale, yscale;
	float color[4];
	unsigned long fg_pixel = gc->fgPixel;
	char *vbo_offset;
	RegionPtr clip;
	int num_points, max_points;
	float *points = NULL;
	glamor_gl_dispatch *dispatch;

	x += drawable->x;
	y += drawable->y;

	if (gc->fillStyle != FillSolid) {
	    glamor_fallback("gc fillstyle not solid\n");
	    return FALSE;
	}

	pixmap_priv = glamor_get_pixmap_private(pixmap);
	if (!GLAMOR_PIXMAP_PRIV_HAS_FBO(pixmap_priv))
	    return FALSE;

	dispatch = glamor_get_dispatch(glamor_priv);
	if (!glamor_set_alu(dispatch, gc->alu)) {
	    if (gc->alu == GXclear)
		fg_pixel = 0;
	    else {
		glamor_fallback("unsupported alu %x\n", gc->alu);
		glamor_put_dispatch(glamor_priv);
		return FALSE;
	    }
	}

	if (!glamor_set_planemask(pixmap, gc->planemask)) {
	    glamor_fallback("Failed to set planemask in %s.\n", __FUNCTION__);
	    glamor_put_dispatch(glamor_priv);
	    return FALSE;
	}

	glamor_get_drawable_deltas(drawable, pixmap, &off_x, &off_y);

	glamor_set_destination_pixmap_priv_nc(pixmap_priv);
	pixmap_priv_get_dest_scale(pixmap_priv, &xscale, &yscale);

	dispatch->glUseProgram(glamor_priv->solid_prog);

	glamor_get_rgba_from_pixel(fg_pixel,
				   &color[0], &color[1], &color[2], &color[3],
				   format_for_pixmap(pixmap));
	dispatch->glUniform4fv(glamor_priv->solid_color_uniform_location, 1, color);

	clip = fbGetCompositeClip(gc);

	dispatch->glEnableVertexAttribArray(GLAMOR_VERTEX_POS);

	max_points = 500;
	num_points = 0;
	while (nglyph--) {
	    CharInfoPtr charinfo = *ppci++;
	    int w = GLYPHWIDTHPIXELS(charinfo);
	    int h = GLYPHHEIGHTPIXELS(charinfo);
	    uint8_t *glyphbits = FONTGLYPHBITS(NULL, charinfo);

	    if (w && h) {
		int glyph_x = x + charinfo->metrics.leftSideBearing;
		int glyph_y = y - charinfo->metrics.ascent;
		int glyph_stride = GLYPHWIDTHBYTESPADDED(charinfo);
		int xx, yy;

		for (yy = 0; yy < h; yy++) {
		    uint8_t *glyph_row = glyphbits + glyph_stride * yy;
		    for (xx = 0; xx < w; xx++) {
			int pt_x_i = glyph_x + xx;
			int pt_y_i = glyph_y + yy;
			float pt_x_f, pt_y_f;
			if (!(glyph_row[xx / 8] & (1 << xx % 8)))
			    continue;

			if (!RegionContainsPoint(clip, pt_x_i, pt_y_i, NULL))
				continue;

			if (!num_points) {
			    points = glamor_get_vbo_space(screen,
							  max_points * 2 * sizeof(float),
							  &vbo_offset);

			    dispatch->glVertexAttribPointer(GLAMOR_VERTEX_POS, 2, GL_FLOAT,
							    GL_FALSE, 2 * sizeof(float),
							    vbo_offset);
			}

			pt_x_f = v_from_x_coord_x(xscale, pt_x_i + off_x + 0.5);
			if (glamor_priv->yInverted)
			    pt_y_f = v_from_x_coord_y_inverted(yscale, pt_y_i + off_y + 0.5);
			else
			    pt_y_f = v_from_x_coord_y(yscale, pt_y_i + off_y + 0.5);

			points[num_points * 2 + 0] = pt_x_f;
			points[num_points * 2 + 1] = pt_y_f;
			num_points++;

			if (num_points == max_points) {
			    glamor_put_vbo_space(screen);
			    dispatch->glDrawArrays(GL_POINTS, 0, num_points);
			    num_points = 0;
			}
		    }
		}
	    }

	    x += charinfo->metrics.characterWidth;
	}

	if (num_points) {
	    glamor_put_vbo_space(screen);
	    dispatch->glDrawArrays(GL_POINTS, 0, num_points);
	}

	dispatch->glDisableVertexAttribArray(GLAMOR_VERTEX_POS);
	dispatch->glBindBuffer(GL_ARRAY_BUFFER, 0);
	dispatch->glUseProgram(0);

	glamor_put_dispatch(glamor_priv);

	return TRUE;
}

static Bool
_glamor_image_glyph_blt(DrawablePtr pDrawable, GCPtr pGC,
                    int x, int y, unsigned int nglyph,
                    CharInfoPtr * ppci, pointer pglyphBase, Bool fallback)
{
	if (!fallback 
	    && glamor_ddx_fallback_check_pixmap(pDrawable)
	    && glamor_ddx_fallback_check_gc(pGC))
		return FALSE;

	miImageGlyphBlt(pDrawable, pGC, x, y, nglyph, ppci, pglyphBase);
	return TRUE;
}

void
glamor_image_glyph_blt(DrawablePtr pDrawable, GCPtr pGC,
                    int x, int y, unsigned int nglyph,
                    CharInfoPtr * ppci, pointer pglyphBase)
{
	_glamor_image_glyph_blt(pDrawable, pGC, x, y, nglyph, ppci, pglyphBase, TRUE);
}

Bool
glamor_image_glyph_blt_nf(DrawablePtr pDrawable, GCPtr pGC,
                    int x, int y, unsigned int nglyph,
                    CharInfoPtr * ppci, pointer pglyphBase)
{
	return _glamor_image_glyph_blt(pDrawable, pGC, x, y, nglyph, ppci, pglyphBase, FALSE);
}

static Bool
_glamor_poly_glyph_blt(DrawablePtr pDrawable, GCPtr pGC,
                    int x, int y, unsigned int nglyph,
                    CharInfoPtr * ppci, pointer pglyphBase, Bool fallback)
{
	if (glamor_poly_glyph_blt_pixels(pDrawable, pGC, x, y, nglyph, ppci))
		return TRUE;

	if (!fallback
	    && glamor_ddx_fallback_check_pixmap(pDrawable)
	    && glamor_ddx_fallback_check_gc(pGC))
		return FALSE;

	miPolyGlyphBlt(pDrawable, pGC, x, y, nglyph, ppci, pglyphBase);
	return TRUE;
}

void
glamor_poly_glyph_blt(DrawablePtr pDrawable, GCPtr pGC,
                    int x, int y, unsigned int nglyph,
                    CharInfoPtr * ppci, pointer pglyphBase)
{
	_glamor_poly_glyph_blt(pDrawable, pGC, x, y, nglyph, ppci, pglyphBase, TRUE);
}

Bool
glamor_poly_glyph_blt_nf(DrawablePtr pDrawable, GCPtr pGC,
                    int x, int y, unsigned int nglyph,
                    CharInfoPtr * ppci, pointer pglyphBase)
{
	return _glamor_poly_glyph_blt(pDrawable, pGC, x, y, nglyph, ppci, pglyphBase, FALSE);
}

static Bool
glamor_push_pixels_points(GCPtr gc, PixmapPtr bitmap,
			  DrawablePtr drawable, int w, int h, int x, int y)
{
	ScreenPtr screen = drawable->pScreen;
	glamor_screen_private *glamor_priv = glamor_get_screen_private(screen);
	PixmapPtr pixmap = glamor_get_drawable_pixmap(drawable);
	glamor_pixmap_private *pixmap_priv;
	uint8_t *bitmap_data = bitmap->devPrivate.ptr;
	int bitmap_stride = bitmap->devKind;
	int off_x, off_y;
	int yy, xx;
	GLfloat xscale, yscale;
	float color[4];
	unsigned long fg_pixel = gc->fgPixel;
	float *points, *next_point;
	int num_points = 0;
	char *vbo_offset;
	RegionPtr clip;
	glamor_gl_dispatch *dispatch;

	if (w * h > MAXINT / (2 * sizeof(float)))
	    return FALSE;

	if (gc->fillStyle != FillSolid) {
	    glamor_fallback("gc fillstyle not solid\n");
	    return FALSE;
	}

	pixmap_priv = glamor_get_pixmap_private(pixmap);
	if (!GLAMOR_PIXMAP_PRIV_HAS_FBO(pixmap_priv))
	    return FALSE;

	dispatch = glamor_get_dispatch(glamor_priv);
	if (!glamor_set_alu(dispatch, gc->alu)) {
	    if (gc->alu == GXclear)
		fg_pixel = 0;
	    else {
		glamor_fallback("unsupported alu %x\n", gc->alu);
		glamor_put_dispatch(glamor_priv);
		return FALSE;
	    }
	}

	if (!glamor_set_planemask(pixmap, gc->planemask)) {
	    glamor_fallback("Failed to set planemask in %s.\n", __FUNCTION__);
	    glamor_put_dispatch(glamor_priv);
	    return FALSE;
	}

	glamor_get_drawable_deltas(drawable, pixmap, &off_x, &off_y);

	glamor_set_destination_pixmap_priv_nc(pixmap_priv);
	pixmap_priv_get_dest_scale(pixmap_priv, &xscale, &yscale);

	dispatch->glUseProgram(glamor_priv->solid_prog);

	glamor_get_rgba_from_pixel(fg_pixel,
				   &color[0], &color[1], &color[2], &color[3],
				   format_for_pixmap(pixmap));
	dispatch->glUniform4fv(glamor_priv->solid_color_uniform_location, 1, color);

	points = glamor_get_vbo_space(screen, w * h * sizeof(float) * 2,
				      &vbo_offset);
	next_point = points;

	clip = fbGetCompositeClip(gc);

	/* Note that because fb sets miTranslate in the GC, our incoming X
	 * and Y are in screen coordinate space (same for spans, but not
	 * other operations).
	 */
	for (yy = 0; yy < h; yy++) {
	    uint8_t *bitmap_row = bitmap_data + yy * bitmap_stride;
	    for (xx = 0; xx < w; xx++) {
		if (bitmap_row[xx / 8] & (1 << xx % 8) &&
		    RegionContainsPoint(clip,
					x + xx,
					y + yy,
					NULL)) {
		    next_point[0] = v_from_x_coord_x(xscale, x + xx + off_x + 0.5);
		    if (glamor_priv->yInverted)
			next_point[1] = v_from_x_coord_y_inverted(yscale, y + yy + off_y + 0.5);
		    else
			next_point[1] = v_from_x_coord_y(yscale, y + yy + off_y + 0.5);

		    next_point += 2;
		    num_points++;
		}
	    }
	}
	glamor_put_vbo_space(screen);

	dispatch->glVertexAttribPointer(GLAMOR_VERTEX_POS, 2, GL_FLOAT,
					GL_FALSE, 2 * sizeof(float),
					vbo_offset);
	dispatch->glEnableVertexAttribArray(GLAMOR_VERTEX_POS);

	dispatch->glDrawArrays(GL_POINTS, 0, num_points);

	dispatch->glDisableVertexAttribArray(GLAMOR_VERTEX_POS);
	dispatch->glBindBuffer(GL_ARRAY_BUFFER, 0);
	dispatch->glUseProgram(0);

	glamor_put_dispatch(glamor_priv);

	return TRUE;
}

static Bool
_glamor_push_pixels(GCPtr pGC, PixmapPtr pBitmap,
		    DrawablePtr pDrawable, int w, int h, int x, int y, Bool fallback)
{
	glamor_pixmap_private *pixmap_priv;

	if (!fallback
	    && glamor_ddx_fallback_check_pixmap(pDrawable)
	    && glamor_ddx_fallback_check_pixmap(&pBitmap->drawable)
	    && glamor_ddx_fallback_check_gc(pGC))
		return FALSE;

	pixmap_priv = glamor_get_pixmap_private(pBitmap);
	if (pixmap_priv->type == GLAMOR_MEMORY) {
	    if (glamor_push_pixels_points(pGC, pBitmap, pDrawable, w, h, x, y))
		return TRUE;
	}

	miPushPixels(pGC, pBitmap, pDrawable, w, h, x, y);
	return TRUE;
}

void
glamor_push_pixels(GCPtr pGC, PixmapPtr pBitmap,
		   DrawablePtr pDrawable, int w, int h, int x, int y)
{
	_glamor_push_pixels(pGC, pBitmap, pDrawable, w, h, x, y, TRUE);
}

Bool
glamor_push_pixels_nf(GCPtr pGC, PixmapPtr pBitmap,
		      DrawablePtr pDrawable, int w, int h, int x, int y)
{
	return _glamor_push_pixels(pGC, pBitmap, pDrawable, w, h, x, y, FALSE);
}