Searched refs:plane (Results 1 - 25 of 78) sorted by relevance

1234

/external/webkit/Source/WebKit/chromium/src/
H A DVideoFrameChromiumImpl.cpp75 unsigned VideoFrameChromiumImpl::width(unsigned plane) const
78 if (format() == YV12 && plane != static_cast<unsigned>(yPlane))
90 unsigned VideoFrameChromiumImpl::height(unsigned plane) const
93 if (format() == YV12 && plane != static_cast<unsigned>(yPlane))
105 int VideoFrameChromiumImpl::stride(unsigned plane) const
108 return m_webVideoFrame->stride(plane);
112 const void* VideoFrameChromiumImpl::data(unsigned plane) const
115 return m_webVideoFrame->data(plane);
119 unsigned VideoFrameChromiumImpl::texture(unsigned plane) const
122 return m_webVideoFrame->texture(plane);
[all...]
H A DVideoFrameChromiumImpl.h53 virtual unsigned width(unsigned plane) const;
55 virtual unsigned height(unsigned plane) const;
57 virtual int stride(unsigned plane) const;
58 virtual const void* data(unsigned plane) const;
59 virtual unsigned texture(unsigned plane) const;
60 virtual const WebCore::IntSize requiredTextureSize(unsigned plane) const;
61 virtual bool hasPaddingBytes(unsigned plane) const;
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DVideoFrameChromium.h72 virtual unsigned width(unsigned plane) const = 0;
74 virtual unsigned height(unsigned plane) const = 0;
76 virtual int stride(unsigned plane) const = 0;
77 virtual const void* data(unsigned plane) const = 0;
78 virtual unsigned texture(unsigned plane) const = 0;
79 virtual const IntSize requiredTextureSize(unsigned plane) const = 0;
80 virtual bool hasPaddingBytes(unsigned plane) const = 0;
H A DVideoLayerChromium.cpp81 for (unsigned plane = 0; plane < VideoFrameChromium::maxPlanes; plane++) {
82 Texture texture = m_textures[plane];
148 for (unsigned plane = 0; plane < frame->planes(); plane++) {
149 Texture texture = m_textures[plane];
150 ASSERT(frame->requiredTextureSize(plane) == texture.size);
151 updateTexture(context, texture.id, texture.size, textureFormat, frame->data(plane));
217 computeVisibleSize(const VideoFrameChromium* frame, unsigned plane) argument
[all...]
/external/chromium/webkit/glue/
H A Dwebvideoframe_impl.h26 virtual int stride(unsigned plane) const;
27 virtual const void* data(unsigned plane) const;
28 virtual unsigned texture(unsigned plane) const;
H A Dwebvideoframe_impl.cc80 int WebVideoFrameImpl::stride(unsigned plane) const {
82 return static_cast<int>(video_frame_->stride(plane));
86 const void* WebVideoFrameImpl::data(unsigned plane) const {
88 return static_cast<const void*>(video_frame_->data(plane));
92 unsigned WebVideoFrameImpl::texture(unsigned plane) const {
94 return video_frame_->gl_texture(plane);
/external/webkit/Source/WebKit/chromium/public/
H A DWebVideoFrame.h64 virtual int stride(unsigned plane) const = 0;
65 virtual const void* data(unsigned plane) const = 0;
66 virtual unsigned texture(unsigned plane) const = 0;
/external/quake/quake/src/QW/client/
H A Dpmovetst.c97 mplane_t *plane; local
105 plane = hull->planes + node->planenum;
107 if (plane->type < 3)
108 d = p[plane->type] - plane->dist;
110 d = DotProduct (plane->normal, p) - plane->dist;
130 mplane_t *plane; local
144 plane = hull->planes + node->planenum;
146 if (plane
179 mplane_t *plane; local
[all...]
H A Dgl_test.c27 plane_t *plane; member in struct:__anon8926
60 junk = trace.plane;
71 plane_t *plane; local
84 plane = HitPlane (r_refdef.vieworg, temp);
87 d = DotProduct (incoming, plane->normal);
89 VectorMA (p->reflect, d*2, plane->normal, p->reflect);
92 VectorCopy (plane->normal, p->normal);
H A Dr_light.c79 splitplane = node->plane;
146 mplane_t *plane; local
162 plane = node->plane;
163 front = DotProduct (start, plane->normal) - plane->dist;
164 back = DotProduct (end, plane->normal) - plane->dist;
H A Dgl_rlight.c199 splitplane = node->plane;
272 mplane_t *plane; local
288 plane = node->plane;
289 front = DotProduct (start, plane->normal) - plane->dist;
290 back = DotProduct (end, plane->normal) - plane->dist;
311 lightplane = plane;
H A Dr_bsp.c171 // transform the BSP plane into model space
173 splitplane = pnode->plane;
180 // clip edges to BSP plane
268 // plane to both sides (but in opposite directions)
348 pplane = psurf->plane;
426 pplane = psurf->plane;
452 mplane_t *plane; local
532 plane = node->plane;
534 switch (plane
[all...]
H A Dvid_svgalib.c109 int i, j, k, plane, reps, repshift, offset, vidpage, off; local
127 for (plane=0 ; plane<4 ; plane++)
129 // select the correct plane for reading and writing
131 outb(1 << plane, 0x3C5);
133 outb(plane, 0x3CF);
141 backingbuf[(i + k) * 24 + (j << 2) + plane] =
146 (j << 2) + plane];
173 int i, j, k, plane, rep local
[all...]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dsymshift.pl3 # "plane" and create combined symbol table
21 # into a corresponding plane when forming such input sequences:
23 # id_combined = id_original + 256 * plane
26 # constants (e.g. the plane for each set). Also, some hard-coded
97 the appropriate plane
118 %plane = (
128 $table{$plane{$table}} = $table;
185 #printf STDERR "doing table $table (plane %d)\n", $plane{$table};
188 $plane
[all...]
/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTPixelBuffer.cpp186 size_t QTPixelBuffer::widthOfPlane(size_t plane) const
188 return CVPixelBufferGetWidthOfPlane(m_pixelBuffer, plane);
191 size_t QTPixelBuffer::heightOfPlane(size_t plane) const
193 return CVPixelBufferGetHeightOfPlane(m_pixelBuffer, plane);
196 void* QTPixelBuffer::baseAddressOfPlane(size_t plane) const
198 return CVPixelBufferGetBaseAddressOfPlane(m_pixelBuffer, plane);
201 size_t QTPixelBuffer::bytesPerRowOfPlane(size_t plane) const
203 return CVPixelBufferGetBytesPerRowOfPlane(m_pixelBuffer, plane);
/external/quake/quake/src/WinQuake/
H A Dgl_test.cpp27 plane_t *plane; member in struct:__anon9289
60 junk = trace.plane;
71 plane_t *plane; local
84 plane = HitPlane (r_refdef.vieworg, temp);
87 d = DotProduct (incoming, plane->normal);
89 VectorMA (p->reflect, d*2, plane->normal, p->reflect);
92 VectorCopy (plane->normal, p->normal);
H A Dvid_vga.cpp65 int i, j, k, plane, reps, repshift; local
83 for (plane=0 ; plane<4 ; plane++)
85 // select the correct plane for reading and writing
87 outportb (SC_DATA, 1 << plane);
89 outportb (GC_DATA, plane);
97 backingbuf[(i + k) * 24 + (j << 2) + plane] =
102 (j << 2) + plane];
136 int i, j, k, plane, rep local
[all...]
H A Dworld.h30 qboolean allsolid; // if true, plane is not valid
35 plane_t plane; // surface normal at impact member in struct:__anon9472
H A Dr_light.cpp79 splitplane = node->plane;
146 mplane_t *plane; local
162 plane = node->plane;
163 front = DotProduct (start, plane->normal) - plane->dist;
164 back = DotProduct (end, plane->normal) - plane->dist;
H A Dworld.cpp355 splitplane = node->plane;
495 mplane_t *plane; local
503 plane = hull->planes + node->planenum;
505 if (plane->type < 3)
506 d = p[plane->type] - plane->dist;
508 d = DotProduct (plane->normal, p) - plane->dist;
584 mplane_t *plane; local
615 plane
[all...]
H A Dgl_rlight.cpp202 splitplane = node->plane;
275 mplane_t *plane; local
291 plane = node->plane;
292 front = DotProduct (start, plane->normal) - plane->dist;
293 back = DotProduct (end, plane->normal) - plane->dist;
314 lightplane = plane;
H A Dr_bsp.cpp171 // transform the BSP plane into model space
173 splitplane = pnode->plane;
180 // clip edges to BSP plane
268 // plane to both sides (but in opposite directions)
348 pplane = psurf->plane;
426 pplane = psurf->plane;
452 mplane_t *plane; local
532 plane = node->plane;
534 switch (plane
[all...]
/external/quake/quake/src/QW/server/
H A Dworld.c345 splitplane = node->plane;
457 mplane_t *plane; local
465 plane = hull->planes + node->planenum;
467 if (plane->type < 3)
468 d = p[plane->type] - plane->dist;
470 d = DotProduct (plane->normal, p) - plane->dist;
536 mplane_t *plane; local
567 plane
[all...]
H A Dworld.h30 qboolean allsolid; // if true, plane is not valid
35 plane_t plane; // surface normal at impact member in struct:__anon9149
/external/svox/pico/lib/
H A Dpicotrns.h78 picoos_uint8 picotrns_unplane(picoos_int16 symIn, picoos_uint8 * plane);
174 pico_status_t picotrns_stAddWithPlane(picotrns_SimpleTransducer this, picoos_char * inStr, picoos_uint8 plane);

Completed in 4055 milliseconds

1234