Home | History | Annotate | Download | only in directfb

Lines Matching defs:conf

79   DFBDisplayLayerConfig  conf;
98 conf.flags = DLCONF_WIDTH | DLCONF_HEIGHT | DLCONF_PIXELFORMAT;
99 conf.width = width;
100 conf.height = height;
105 conf.pixelformat = DSPF_YV12;
108 conf.pixelformat = DSPF_I420;
111 conf.pixelformat = DSPF_YUY2;
114 conf.pixelformat = DSPF_UYVY;
130 ret = layer->SetConfiguration (layer, &conf);
256 DFBDisplayLayerConfig conf;
260 primary->GetConfiguration (primary, &conf);
263 dst->x / (float) conf.width, dst->y / (float) conf.height,
264 dst->w / (float) conf.width, dst->h / (float) conf.height );