Lines Matching refs:attrs
38 _eglParseKHRImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
46 attrs->ImagePreserved = val;
53 attrs->GLTextureLevel = val;
59 attrs->GLTextureZOffset = val;
65 attrs->ProtectedContent = val;
75 _eglParseMESADrmImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
83 attrs->Width = val;
86 attrs->Height = val;
89 attrs->DRMBufferFormatMESA = val;
92 attrs->DRMBufferUseMESA = val;
95 attrs->DRMBufferStrideMESA = val;
105 _eglParseWLBindWaylandDisplayAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
113 attrs->PlaneWL = val;
123 _eglParseEXTImageDmaBufImportAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
131 attrs->Width = val;
134 attrs->Height = val;
137 attrs->DMABufFourCC.Value = val;
138 attrs->DMABufFourCC.IsPresent = EGL_TRUE;
141 attrs->DMABufPlaneFds[0].Value = val;
142 attrs->DMABufPlaneFds[0].IsPresent = EGL_TRUE;
145 attrs->DMABufPlaneOffsets[0].Value = val;
146 attrs->DMABufPlaneOffsets[0].IsPresent = EGL_TRUE;
149 attrs->DMABufPlanePitches[0].Value = val;
150 attrs->DMABufPlanePitches[0].IsPresent = EGL_TRUE;
153 attrs->DMABufPlaneFds[1].Value = val;
154 attrs->DMABufPlaneFds[1].IsPresent = EGL_TRUE;
157 attrs->DMABufPlaneOffsets[1].Value = val;
158 attrs->DMABufPlaneOffsets[1].IsPresent = EGL_TRUE;
161 attrs->DMABufPlanePitches[1].Value = val;
162 attrs->DMABufPlanePitches[1].IsPresent = EGL_TRUE;
165 attrs->DMABufPlaneFds[2].Value = val;
166 attrs->DMABufPlaneFds[2].IsPresent = EGL_TRUE;
169 attrs->DMABufPlaneOffsets[2].Value = val;
170 attrs->DMABufPlaneOffsets[2].IsPresent = EGL_TRUE;
173 attrs->DMABufPlanePitches[2].Value = val;
174 attrs->DMABufPlanePitches[2].IsPresent = EGL_TRUE;
181 attrs->DMABufYuvColorSpaceHint.Value = val;
182 attrs->DMABufYuvColorSpaceHint.IsPresent = EGL_TRUE;
188 attrs->DMABufSampleRangeHint.Value = val;
189 attrs->DMABufSampleRangeHint.IsPresent = EGL_TRUE;
196 attrs->DMABufChromaHorizontalSiting.Value = val;
197 attrs->DMABufChromaHorizontalSiting.IsPresent = EGL_TRUE;
204 attrs->DMABufChromaVerticalSiting.Value = val;
205 attrs->DMABufChromaVerticalSiting.IsPresent = EGL_TRUE;
215 _eglParseEXTImageDmaBufImportModifiersAttribs(_EGLImageAttribs *attrs,
224 attrs->DMABufPlaneModifiersLo[0].Value = val;
225 attrs->DMABufPlaneModifiersLo[0].IsPresent = EGL_TRUE;
228 attrs->DMABufPlaneModifiersHi[0].Value = val;
229 attrs->DMABufPlaneModifiersHi[0].IsPresent = EGL_TRUE;
232 attrs->DMABufPlaneModifiersLo[1].Value = val;
233 attrs->DMABufPlaneModifiersLo[1].IsPresent = EGL_TRUE;
236 attrs->DMABufPlaneModifiersHi[1].Value = val;
237 attrs->DMABufPlaneModifiersHi[1].IsPresent = EGL_TRUE;
240 attrs->DMABufPlaneModifiersLo[2].Value = val;
241 attrs->DMABufPlaneModifiersLo[2].IsPresent = EGL_TRUE;
244 attrs->DMABufPlaneModifiersHi[2].Value = val;
245 attrs->DMABufPlaneModifiersHi[2].IsPresent = EGL_TRUE;
248 attrs->DMABufPlaneFds[3].Value = val;
249 attrs->DMABufPlaneFds[3].IsPresent = EGL_TRUE;
252 attrs->DMABufPlaneOffsets[3].Value = val;
253 attrs->DMABufPlaneOffsets[3].IsPresent = EGL_TRUE;
256 attrs->DMABufPlanePitches[3].Value = val;
257 attrs->DMABufPlanePitches[3].IsPresent = EGL_TRUE;
260 attrs->DMABufPlaneModifiersLo[3].Value = val;
261 attrs->DMABufPlaneModifiersLo[3].IsPresent = EGL_TRUE;
264 attrs->DMABufPlaneModifiersHi[3].Value = val;
265 attrs->DMABufPlaneModifiersHi[3].IsPresent = EGL_TRUE;
281 _eglParseImageAttribList(_EGLImageAttribs *attrs, _EGLDisplay *disp,
286 memset(attrs, 0, sizeof(*attrs));
295 err = _eglParseKHRImageAttribs(attrs, disp, attr, val);
299 err = _eglParseMESADrmImageAttribs(attrs, disp, attr, val);
303 err = _eglParseWLBindWaylandDisplayAttribs(attrs, disp, attr, val);
307 err = _eglParseEXTImageDmaBufImportAttribs(attrs, disp, attr, val);
318 err = _eglParseEXTImageDmaBufImportModifiersAttribs(attrs, disp, attr, val);