annotate src/sdl_pango-2-static-matrices.patch @ 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +0200
parents 99516e73b368
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 833
diff changeset
1 This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2333
diff changeset
2 See index.html for further information.
833
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 --- SDL_Pango-0.1.2.orig/src/SDL_Pango.h 2010-04-08 11:33:48.000000000 +0200
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 +++ SDL_Pango-0.1.2/src/SDL_Pango.h 2010-04-08 11:36:51.000000000 +0200
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
6 @@ -46,7 +46,7 @@
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
7 Uint8 m[4][4]; /*! Matrix variables */
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 } SDLPango_Matrix;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
9
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10 -const SDLPango_Matrix _MATRIX_WHITE_BACK
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11 +static const SDLPango_Matrix _MATRIX_WHITE_BACK
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 = {255, 0, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 255, 0, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 255, 0, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 @@ -55,9 +55,9 @@
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 /*!
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 Specifies white back and black letter.
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 */
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 -const SDLPango_Matrix *MATRIX_WHITE_BACK = &_MATRIX_WHITE_BACK;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 +static const SDLPango_Matrix *MATRIX_WHITE_BACK = &_MATRIX_WHITE_BACK;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 -const SDLPango_Matrix _MATRIX_BLACK_BACK
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 +static const SDLPango_Matrix _MATRIX_BLACK_BACK
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 = {0, 255, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 0, 255, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 0, 255, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 @@ -65,9 +65,9 @@
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 /*!
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 Specifies black back and white letter.
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 */
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 -const SDLPango_Matrix *MATRIX_BLACK_BACK = &_MATRIX_BLACK_BACK;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
32 +static const SDLPango_Matrix *MATRIX_BLACK_BACK = &_MATRIX_BLACK_BACK;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
33
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
34 -const SDLPango_Matrix _MATRIX_TRANSPARENT_BACK_BLACK_LETTER
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
35 +static const SDLPango_Matrix _MATRIX_TRANSPARENT_BACK_BLACK_LETTER
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
36 = {0, 0, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
37 0, 0, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
38 0, 0, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
39 @@ -75,9 +75,9 @@
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
40 /*!
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
41 Specifies transparent back and black letter.
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
42 */
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
43 -const SDLPango_Matrix *MATRIX_TRANSPARENT_BACK_BLACK_LETTER = &_MATRIX_TRANSPARENT_BACK_BLACK_LETTER;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
44 +static const SDLPango_Matrix *MATRIX_TRANSPARENT_BACK_BLACK_LETTER = &_MATRIX_TRANSPARENT_BACK_BLACK_LETTER;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
45
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
46 -const SDLPango_Matrix _MATRIX_TRANSPARENT_BACK_WHITE_LETTER
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
47 +static const SDLPango_Matrix _MATRIX_TRANSPARENT_BACK_WHITE_LETTER
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
48 = {255, 255, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
49 255, 255, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
50 255, 255, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
51 @@ -85,9 +85,9 @@
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
52 /*!
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
53 Specifies transparent back and white letter.
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
54 */
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
55 -const SDLPango_Matrix *MATRIX_TRANSPARENT_BACK_WHITE_LETTER = &_MATRIX_TRANSPARENT_BACK_WHITE_LETTER;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
56 +static const SDLPango_Matrix *MATRIX_TRANSPARENT_BACK_WHITE_LETTER = &_MATRIX_TRANSPARENT_BACK_WHITE_LETTER;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
57
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
58 -const SDLPango_Matrix _MATRIX_TRANSPARENT_BACK_TRANSPARENT_LETTER
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
59 +static const SDLPango_Matrix _MATRIX_TRANSPARENT_BACK_TRANSPARENT_LETTER
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
60 = {255, 255, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
61 255, 255, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
62 255, 255, 0, 0,
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
63 @@ -96,7 +96,7 @@
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
64 Specifies transparent back and transparent letter.
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
65 This is useful for KARAOKE like rendering.
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
66 */
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
67 -const SDLPango_Matrix *MATRIX_TRANSPARENT_BACK_TRANSPARENT_LETTER = &_MATRIX_TRANSPARENT_BACK_TRANSPARENT_LETTER;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
68 +static const SDLPango_Matrix *MATRIX_TRANSPARENT_BACK_TRANSPARENT_LETTER = &_MATRIX_TRANSPARENT_BACK_TRANSPARENT_LETTER;
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
69
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
70 /*!
e9696716e4a6 "static-matrices" patch for package sdl_pango (by David Bruce)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
71 Specifies direction of text. See Pango reference for detail