Lines Matching refs:pClient

58 static int ProcRenderQueryVersion(ClientPtr pClient);
59 static int ProcRenderQueryPictFormats(ClientPtr pClient);
60 static int ProcRenderQueryPictIndexValues(ClientPtr pClient);
61 static int ProcRenderQueryDithers(ClientPtr pClient);
62 static int ProcRenderCreatePicture(ClientPtr pClient);
63 static int ProcRenderChangePicture(ClientPtr pClient);
64 static int ProcRenderSetPictureClipRectangles(ClientPtr pClient);
65 static int ProcRenderFreePicture(ClientPtr pClient);
66 static int ProcRenderComposite(ClientPtr pClient);
67 static int ProcRenderScale(ClientPtr pClient);
68 static int ProcRenderTrapezoids(ClientPtr pClient);
69 static int ProcRenderTriangles(ClientPtr pClient);
70 static int ProcRenderTriStrip(ClientPtr pClient);
71 static int ProcRenderTriFan(ClientPtr pClient);
72 static int ProcRenderColorTrapezoids(ClientPtr pClient);
73 static int ProcRenderColorTriangles(ClientPtr pClient);
74 static int ProcRenderTransform(ClientPtr pClient);
75 static int ProcRenderCreateGlyphSet(ClientPtr pClient);
76 static int ProcRenderReferenceGlyphSet(ClientPtr pClient);
77 static int ProcRenderFreeGlyphSet(ClientPtr pClient);
78 static int ProcRenderAddGlyphs(ClientPtr pClient);
79 static int ProcRenderAddGlyphsFromPicture(ClientPtr pClient);
80 static int ProcRenderFreeGlyphs(ClientPtr pClient);
81 static int ProcRenderCompositeGlyphs(ClientPtr pClient);
82 static int ProcRenderFillRectangles(ClientPtr pClient);
83 static int ProcRenderCreateCursor(ClientPtr pClient);
84 static int ProcRenderSetPictureTransform(ClientPtr pClient);
85 static int ProcRenderQueryFilters(ClientPtr pClient);
86 static int ProcRenderSetPictureFilter(ClientPtr pClient);
87 static int ProcRenderCreateAnimCursor(ClientPtr pClient);
88 static int ProcRenderAddTraps(ClientPtr pClient);
89 static int ProcRenderCreateSolidFill(ClientPtr pClient);
90 static int ProcRenderCreateLinearGradient(ClientPtr pClient);
91 static int ProcRenderCreateRadialGradient(ClientPtr pClient);
92 static int ProcRenderCreateConicalGradient(ClientPtr pClient);
94 static int ProcRenderDispatch(ClientPtr pClient);
96 static int SProcRenderQueryVersion(ClientPtr pClient);
97 static int SProcRenderQueryPictFormats(ClientPtr pClient);
98 static int SProcRenderQueryPictIndexValues(ClientPtr pClient);
99 static int SProcRenderQueryDithers(ClientPtr pClient);
100 static int SProcRenderCreatePicture(ClientPtr pClient);
101 static int SProcRenderChangePicture(ClientPtr pClient);
102 static int SProcRenderSetPictureClipRectangles(ClientPtr pClient);
103 static int SProcRenderFreePicture(ClientPtr pClient);
104 static int SProcRenderComposite(ClientPtr pClient);
105 static int SProcRenderScale(ClientPtr pClient);
106 static int SProcRenderTrapezoids(ClientPtr pClient);
107 static int SProcRenderTriangles(ClientPtr pClient);
108 static int SProcRenderTriStrip(ClientPtr pClient);
109 static int SProcRenderTriFan(ClientPtr pClient);
110 static int SProcRenderColorTrapezoids(ClientPtr pClient);
111 static int SProcRenderColorTriangles(ClientPtr pClient);
112 static int SProcRenderTransform(ClientPtr pClient);
113 static int SProcRenderCreateGlyphSet(ClientPtr pClient);
114 static int SProcRenderReferenceGlyphSet(ClientPtr pClient);
115 static int SProcRenderFreeGlyphSet(ClientPtr pClient);
116 static int SProcRenderAddGlyphs(ClientPtr pClient);
117 static int SProcRenderAddGlyphsFromPicture(ClientPtr pClient);
118 static int SProcRenderFreeGlyphs(ClientPtr pClient);
119 static int SProcRenderCompositeGlyphs(ClientPtr pClient);
120 static int SProcRenderFillRectangles(ClientPtr pClient);
121 static int SProcRenderCreateCursor(ClientPtr pClient);
122 static int SProcRenderSetPictureTransform(ClientPtr pClient);
123 static int SProcRenderQueryFilters(ClientPtr pClient);
124 static int SProcRenderSetPictureFilter(ClientPtr pClient);
125 static int SProcRenderCreateAnimCursor(ClientPtr pClient);
126 static int SProcRenderAddTraps(ClientPtr pClient);
127 static int SProcRenderCreateSolidFill(ClientPtr pClient);
128 static int SProcRenderCreateLinearGradient(ClientPtr pClient);
129 static int SProcRenderCreateRadialGradient(ClientPtr pClient);
130 static int SProcRenderCreateConicalGradient(ClientPtr pClient);
132 static int SProcRenderDispatch(ClientPtr pClient);
220 #define GetRenderClient(pClient) ((RenderClientPtr)dixLookupPrivate(&(pClient)->devPrivates, Render… argument