HomeSort by relevance Sort by last modified time
    Searched refs:pitches (Results 1 - 16 of 16) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5yuv.c 44 Uint16 pitches[3]; member in struct:private_yuvhwdata
180 overlay->pitches = hwdata->pitches;
219 overlay->pitches[0] = (Uint16)ddsd.u1.lPitch;
221 overlay->pitches[0] = (Uint16)ddsd.lPitch;
228 overlay->pitches[1] = overlay->pitches[0] / 2;
229 overlay->pitches[2] = overlay->pitches[0] / 2;
231 overlay->pitches[0] * overlay->h
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_yuv.c 46 Uint16 pitches[3]; member in struct:private_yuvhwdata
191 overlay->pitches = hwdata->pitches;
223 overlay->pitches[0] = (Uint16) pitch;
231 overlay->pitches[1] = overlay->pitches[0] / 2;
232 overlay->pitches[2] = overlay->pitches[0] / 2;
233 overlay->pixels[1] = overlay->pixels[0] + overlay->pitches[0] * overlay->h;
234 overlay->pixels[2] = overlay->pixels[1] + overlay->pitches[1] * overlay->h / 2
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11yuv.c 116 memset(overlay->pixels[0] + y * overlay->pitches[0],
121 memset(overlay->pixels[1] + y * overlay->pitches[1],
123 memset(overlay->pixels[2] + y * overlay->pitches[2],
134 y * overlay->pitches[0] + x * 2;
148 y * overlay->pitches[0] + x * 2;
331 if ( hwdata->image != NULL && hwdata->image->pitches[0] != (width*bpp) ) {
333 width = hwdata->image->pitches[0] / bpp;
375 if ( hwdata->image != NULL && hwdata->image->pitches[0] != (width*bpp) ) {
378 width = hwdata->image->pitches[0] / bpp;
398 overlay->pitches = (Uint16 *)SDL_malloc(overlay->planes * sizeof(Uint16))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3yuv.c 64 Uint16 pitches[3]; member in struct:private_yuvhwdata
173 overlay->pitches = hwdata->pitches;
178 overlay->pitches[0] = overlay->w;
179 overlay->pitches[1] = overlay->pitches[0] / 2;
180 overlay->pitches[2] = overlay->pitches[0] / 2;
183 overlay->pitches[0] * overlay->h;
185 overlay->pitches[1] * overlay->h / 2
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsyuv.c 61 Uint16 pitches[3]; member in struct:private_yuvhwdata
149 overlay->pitches = hwdata->pitches;
154 overlay->pitches[0] = overlay->w;
155 overlay->pitches[1] = overlay->pitches[0] / 2;
156 overlay->pitches[2] = overlay->pitches[0] / 2;
159 overlay->pitches[0] * overlay->h;
161 overlay->pitches[1] * overlay->h / 2
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testoverlay2.c 106 op[0]=o->pixels[0]+o->pitches[0]*y;
107 op[1]=o->pixels[1]+o->pitches[1]*(y/2);
108 op[2]=o->pixels[2]+o->pitches[2]*(y/2);
139 op[0]=o->pixels[0]+o->pitches[0]*y;
140 op[1]=o->pixels[1]+o->pitches[1]*(y/2);
141 op[2]=o->pixels[2]+o->pitches[2]*(y/2);
171 op=o->pixels[0]+o->pitches[0]*y;
204 op=o->pixels[0]+o->pitches[0]*y;
240 op=o->pixels[0]+o->pitches[0]*y;
496 printf(" plane %d: pitch=%d\n", i, overlay->pitches[i])
    [all...]
testoverlay.c 92 memset(o->pixels[0],0,o->pitches[0]*o->h);
93 memset(o->pixels[1],128,o->pitches[1]*((o->h+1)/2));
94 memset(o->pixels[2],128,o->pitches[2]*((o->h+1)/2));
101 op[0]=o->pixels[0]+o->pitches[0]*y;
102 op[1]=o->pixels[1]+o->pitches[1]*(y/2);
103 op[2]=o->pixels[2]+o->pitches[2]*(y/2);
132 memset(o->pixels[0],0,o->pitches[0]*o->h);
133 memset(o->pixels[1],128,o->pitches[1]*((o->h+1)/2));
134 memset(o->pixels[2],128,o->pitches[2]*((o->h+1)/2));
141 op[0]=o->pixels[0]+o->pitches[0]*y
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_sysyuv.cc 214 overlay->pitches = (Uint16*)SDL_calloc(overlay->planes, sizeof(Uint16));
216 if (!overlay->pitches || !overlay->pixels)
223 overlay->pitches[0] = bbitmap->BytesPerRow();
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_phyuv.c 247 overlay->pitches = SDL_calloc(overlay->planes, sizeof(Uint16));
249 if (!overlay->pitches || !overlay->pixels)
258 overlay->pitches[0] = overlay->hwdata->channel->yplane1->pitch;
263 overlay->pitches[1] = overlay->hwdata->channel->vplane1->pitch;
268 overlay->pitches[2] = overlay->hwdata->channel->uplane1->pitch;
309 overlay->pitches[0] = overlay->hwdata->channel->yplane1->pitch;
314 overlay->pitches[1] = overlay->hwdata->channel->uplane1->pitch;
319 overlay->pitches[2] = overlay->hwdata->channel->vplane1->pitch;
440 overlay->pitches[0] = overlay->hwdata->channel->yplane1->pitch;
445 overlay->pitches[1] = overlay->hwdata->channel->uplane1->pitch
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_yuv_sw.c 117 Uint16 pitches[3]; member in struct:private_yuvhwdata
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
Xvlib.h 159 int *pitches; /* bytes */ member in struct:__anon13373
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/
Xv.c 969 ret->pitches = (int*)(&ret[1]);
970 ret->offsets = ret->pitches + rep.num_planes;
973 _XRead(dpy, (char*)(ret->pitches), rep.num_planes << 2);
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_video.h 212 Uint16 *pitches; /**< Read-only */ member in struct:SDL_Overlay
    [all...]
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_video.h 212 Uint16 *pitches; /**< Read-only */ member in struct:SDL_Overlay
    [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_video.h 212 Uint16 *pitches; /**< Read-only */ member in struct:SDL_Overlay
    [all...]
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_video.h 212 Uint16 *pitches; /**< Read-only */ member in struct:SDL_Overlay
    [all...]

Completed in 259 milliseconds