Searched defs:planes (Results 1 - 25 of 25) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_centscreen.c77 void SDL_XBIOS_CentscreenSetmode(_THIS, int width, int height, int planes) argument
84 newmode.plan = planes;
/external/chromium/webkit/glue/
H A Dwebvideoframe_impl.cc74 unsigned WebVideoFrameImpl::planes() const { function in class:webkit_glue::WebVideoFrameImpl
76 return video_frame_->planes();
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DDome.java58 private int planes; field in class:Dome
75 * @param planes
76 * The number of planes along the Z-axis. Must be >= 2.
85 public Dome(int planes, int radialSamples, float radius) { argument
86 this(new Vector3f(0, 0, 0), planes, radialSamples, radius);
92 * For a cone, set planes=2. For a pyramid, set radialSamples=4 and planes=2.
93 * Increasing planes and radialSamples increase the quality of the dome.
97 * @param planes
98 * The number of planes alon
106 Dome(Vector3f center, int planes, int radialSamples, float radius) argument
133 Dome(Vector3f center, int planes, int radialSamples, float radius, boolean insideView) argument
180 updateGeometry(Vector3f center, int planes, int radialSamples, float radius, boolean insideView) argument
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DVideoFrameChromiumImpl.cpp98 unsigned VideoFrameChromiumImpl::planes() const function in class:WebKit::VideoFrameChromiumImpl
101 return m_webVideoFrame->planes();
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_phyuv.c49 int planes = 0; local
60 planes++;
63 planes++;
66 planes++;
68 return planes;
77 int planes; local
209 planes = grab_ptrs2(overlay->hwdata->channel, overlay->hwdata->FrameData0, overlay->hwdata->FrameData1);
218 /* check for the validness of all planes */
224 SDL_SetError("PgConfigScaler() returns all planes equal NULL\n");
246 overlay->planes
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3yuv.c65 Uint8 * planes[3]; member in struct:private_yuvhwdata
174 overlay->pixels = hwdata->planes;
186 overlay->planes = 3;
/external/opencv/cvaux/src/
H A Dcamshift.cpp86 uchar* planes[CV_MAX_DIM]; local
116 cvGetRawData( m_color_planes[i], &planes[i], &plane_step, &size );
132 planes[0][x] = (uchar)val0;
134 planes[1][x] = (uchar)val1;
136 planes[2][x] = (uchar)val2;
142 planes[0][x] = 0;
144 planes[1][x] = 0;
146 planes[2][x] = 0;
151 planes[i] += plane_step;
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.cc133 int planes; local
144 /* count planes */
145 planes = count_planes(format);
146 if (planes == 0)
151 if (planes == 3)
213 overlay->planes = planes;
214 overlay->pitches = (Uint16*)SDL_calloc(overlay->planes, sizeof(Uint16));
215 overlay->pixels = (Uint8**)SDL_calloc(overlay->planes, sizeof(Uint8*));
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_yuv.c47 Uint8 *planes[3]; member in struct:private_yuvhwdata
192 overlay->pixels = hwdata->planes;
197 overlay->planes = 3;
200 overlay->planes = 1;
230 /* Add the two extra planes */
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5yuv.c45 Uint8 *planes[3]; member in struct:private_yuvhwdata
181 overlay->pixels = hwdata->planes;
185 overlay->planes = 3;
188 overlay->planes = 1;
227 /* Add the two extra planes */
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsyuv.c62 Uint8 *planes[3]; member in struct:private_yuvhwdata
150 overlay->pixels = hwdata->planes;
162 overlay->planes = 3;
/external/libvpx/vpx/
H A Dvpx_image.h126 unsigned char *planes[4]; /**< pointer to the top left pixel for each plane */ member in struct:vpx_image
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv_sw.c118 Uint8 *planes[3]; member in struct:private_yuvhwdata
1127 overlay->pixels = swdata->planes;
1139 overlay->planes = 3;
1146 overlay->planes = 1;
/external/quake/quake/src/QW/server/
H A Dsv_phys.c229 The basic solid body movement clip that slides along multiple planes
244 vec3_t planes[MAX_CLIP_PLANES]; local
320 VectorCopy (trace.plane.normal, planes[numplanes]);
324 // modify original_velocity so it parallels all of the clip planes
328 ClipVelocity (original_velocity, planes[i], new_velocity, 1);
332 if (DotProduct (new_velocity, planes[j]) < 0)
351 CrossProduct (planes[0], planes[1], dir);
/external/opencv/cv/src/
H A Dcvtemplmatch.cpp159 CvMat* planes[] = { 0, 0, 0, 0 }; local
167 planes[k] = templ_depth == max_depth ? dst :
169 cvSplit( templ, planes[0], planes[1], planes[2], planes[3] );
170 src = planes[k];
171 planes[k] = 0;
203 CvMat* planes[] = { 0, 0, 0, 0 }; local
232 planes[
[all...]
/external/opencv/cxcore/src/
H A Dcxcopy.cpp391 CvArr* planes[] = { 0, 0, 0, 0 }; local
396 planes[coi1-1] = dst;
397 CV_CALL( cvSplit( src, planes[0], planes[1], planes[2], planes[3] ));
402 CvArr* planes[] = { 0, 0, 0, 0 }; local
407 planes[coi2-1] = src;
408 CV_CALL( cvMerge( planes[0], planes[
[all...]
/external/quake/quake/src/QW/client/
H A Dpmove.c102 The basic solid body movement clip that slides along multiple planes
113 vec3_t planes[MAX_CLIP_PLANES]; local
174 VectorCopy (trace.plane.normal, planes[numplanes]);
178 // modify original_velocity so it parallels all of the clip planes
182 PM_ClipVelocity (original_velocity, planes[i], pmove.velocity, 1);
186 if (DotProduct (pmove.velocity, planes[j]) < 0)
204 CrossProduct (planes[0], planes[1], dir);
H A Dgl_model.h203 mplane_t *planes; member in struct:__anon11338
377 mplane_t *planes; member in struct:model_s
H A Dmodel.h183 mplane_t *planes; member in struct:__anon11368
343 mplane_t *planes; member in struct:model_s
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_video.h200 #define SDL_YV12_OVERLAY 0x32315659 /**< Planar mode: Y + V + U (3 planes) */
201 #define SDL_IYUV_OVERLAY 0x56555949 /**< Planar mode: Y + U + V (3 planes) */
211 int planes; /**< Read-only */ member in struct:SDL_Overlay
/external/quake/quake/src/WinQuake/
H A Dmodel.h172 mplane_t *planes; member in struct:__anon11728
326 mplane_t *planes; member in struct:model_s
H A Dsv_phys.cpp220 The basic solid body movement clip that slides along multiple planes
235 vec3_t planes[MAX_CLIP_PLANES]; local
314 VectorCopy (trace.plane.normal, planes[numplanes]);
318 // modify original_velocity so it parallels all of the clip planes
322 ClipVelocity (original_velocity, planes[i], new_velocity, 1);
326 if (DotProduct (new_velocity, planes[j]) < 0)
345 CrossProduct (planes[0], planes[1], dir);
H A Dgl_model.h199 mplane_t *planes; member in struct:__anon11701
374 mplane_t *planes; member in struct:model_s
/external/kernel-headers/original/linux/
H A Dvideodev2.h352 /* two planes -- one Y, one Cr + Cb interleaved */
360 /* two non contiguous planes - one Y, one Cr + Cb interleaved */
364 /* three non contiguous planes - Y, Cb, Cr */
618 * Multi-planar buffers consist of one or more planes, e.g. an YCbCr buffer
619 * with two planes can have one plane for Y, and another for interleaved CbCr
651 * @planes: for multiplanar buffers; userspace pointer to the array of plane
655 * planes array for multi-plane buffers
676 struct v4l2_plane *planes; member in union:v4l2_buffer::__anon7220
2291 * @num_planes: number of planes for this format
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 431 milliseconds