Lines Matching defs:attrs
38 _eglParseKHRImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
46 attrs->ImagePreserved = val;
53 attrs->GLTextureLevel = val;
59 attrs->GLTextureZOffset = val;
69 _eglParseMESADrmImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
77 attrs->Width = val;
80 attrs->Height = val;
83 attrs->DRMBufferFormatMESA = val;
86 attrs->DRMBufferUseMESA = val;
89 attrs->DRMBufferStrideMESA = val;
99 _eglParseWLBindWaylandDisplayAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
107 attrs->PlaneWL = val;
117 _eglParseEXTImageDmaBufImportAttribs(_EGLImageAttribs *attrs, _EGLDisplay *disp,
125 attrs->Width = val;
128 attrs->Height = val;
131 attrs->DMABufFourCC.Value = val;
132 attrs->DMABufFourCC.IsPresent = EGL_TRUE;
135 attrs->DMABufPlaneFds[0].Value = val;
136 attrs->DMABufPlaneFds[0].IsPresent = EGL_TRUE;
139 attrs->DMABufPlaneOffsets[0].Value = val;
140 attrs->DMABufPlaneOffsets[0].IsPresent = EGL_TRUE;
143 attrs->DMABufPlanePitches[0].Value = val;
144 attrs->DMABufPlanePitches[0].IsPresent = EGL_TRUE;
147 attrs->DMABufPlaneFds[1].Value = val;
148 attrs->DMABufPlaneFds[1].IsPresent = EGL_TRUE;
151 attrs->DMABufPlaneOffsets[1].Value = val;
152 attrs->DMABufPlaneOffsets[1].IsPresent = EGL_TRUE;
155 attrs->DMABufPlanePitches[1].Value = val;
156 attrs->DMABufPlanePitches[1].IsPresent = EGL_TRUE;
159 attrs->DMABufPlaneFds[2].Value = val;
160 attrs->DMABufPlaneFds[2].IsPresent = EGL_TRUE;
163 attrs->DMABufPlaneOffsets[2].Value = val;
164 attrs->DMABufPlaneOffsets[2].IsPresent = EGL_TRUE;
167 attrs->DMABufPlanePitches[2].Value = val;
168 attrs->DMABufPlanePitches[2].IsPresent = EGL_TRUE;
175 attrs->DMABufYuvColorSpaceHint.Value = val;
176 attrs->DMABufYuvColorSpaceHint.IsPresent = EGL_TRUE;
182 attrs->DMABufSampleRangeHint.Value = val;
183 attrs->DMABufSampleRangeHint.IsPresent = EGL_TRUE;
190 attrs->DMABufChromaHorizontalSiting.Value = val;
191 attrs->DMABufChromaHorizontalSiting.IsPresent = EGL_TRUE;
198 attrs->DMABufChromaVerticalSiting.Value = val;
199 attrs->DMABufChromaVerticalSiting.IsPresent = EGL_TRUE;
209 _eglParseEXTImageDmaBufImportModifiersAttribs(_EGLImageAttribs *attrs,
218 attrs->DMABufPlaneModifiersLo[0].Value = val;
219 attrs->DMABufPlaneModifiersLo[0].IsPresent = EGL_TRUE;
222 attrs->DMABufPlaneModifiersHi[0].Value = val;
223 attrs->DMABufPlaneModifiersHi[0].IsPresent = EGL_TRUE;
226 attrs->DMABufPlaneModifiersLo[1].Value = val;
227 attrs->DMABufPlaneModifiersLo[1].IsPresent = EGL_TRUE;
230 attrs->DMABufPlaneModifiersHi[1].Value = val;
231 attrs->DMABufPlaneModifiersHi[1].IsPresent = EGL_TRUE;
234 attrs->DMABufPlaneModifiersLo[2].Value = val;
235 attrs->DMABufPlaneModifiersLo[2].IsPresent = EGL_TRUE;
238 attrs->DMABufPlaneModifiersHi[2].Value = val;
239 attrs->DMABufPlaneModifiersHi[2].IsPresent = EGL_TRUE;
242 attrs->DMABufPlaneFds[3].Value = val;
243 attrs->DMABufPlaneFds[3].IsPresent = EGL_TRUE;
246 attrs->DMABufPlaneOffsets[3].Value = val;
247 attrs->DMABufPlaneOffsets[3].IsPresent = EGL_TRUE;
250 attrs->DMABufPlanePitches[3].Value = val;
251 attrs->DMABufPlanePitches[3].IsPresent = EGL_TRUE;
254 attrs->DMABufPlaneModifiersLo[3].Value = val;
255 attrs->DMABufPlaneModifiersLo[3].IsPresent = EGL_TRUE;
258 attrs->DMABufPlaneModifiersHi[3].Value = val;
259 attrs->DMABufPlaneModifiersHi[3].IsPresent = EGL_TRUE;
275 _eglParseImageAttribList(_EGLImageAttribs *attrs, _EGLDisplay *disp,
280 memset(attrs, 0, sizeof(*attrs));
289 err = _eglParseKHRImageAttribs(attrs, disp, attr, val);
293 err = _eglParseMESADrmImageAttribs(attrs, disp, attr, val);
297 err = _eglParseWLBindWaylandDisplayAttribs(attrs, disp, attr, val);
301 err = _eglParseEXTImageDmaBufImportAttribs(attrs, disp, attr, val);
312 err = _eglParseEXTImageDmaBufImportModifiersAttribs(attrs, disp, attr, val);