HomeSort by relevance Sort by last modified time
    Searched refs:plane (Results 1 - 25 of 212) sorted by null

1 2 3 4 5 6 7 8 9

  /external/webkit/Source/WebKit/chromium/src/
VideoFrameChromiumImpl.h 53 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;
VideoFrameChromiumImpl.cpp 75 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...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
VideoFrameChromium.h 72 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;
VideoLayerChromium.cpp 81 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));
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebVideoFrame.h 64 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/chromium/webkit/glue/
webvideoframe_impl.h 26 virtual int stride(unsigned plane) const;
27 virtual const void* data(unsigned plane) const;
28 virtual unsigned texture(unsigned plane) const;
webvideoframe_impl.cc 80 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/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
PlaneCollisionShape.java 12 import com.jme3.math.Plane;
23 private Plane plane; field in class:PlaneCollisionShape
29 * Creates a plane Collision shape
30 * @param plane the plane that defines the shape
32 public PlaneCollisionShape(Plane plane) {
33 this.plane = plane;
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
PlaneCollisionShape.java 14 import com.jme3.math.Plane;
22 private Plane plane; field in class:PlaneCollisionShape
28 * Creates a plane Collision shape
29 * @param plane the plane that defines the shape
31 public PlaneCollisionShape(Plane plane) {
32 this.plane = plane;
    [all...]
  /external/quake/quake/src/QW/client/
pmovetst.c 97 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->type < 3)
179 mplane_t *plane; local
    [all...]
gl_test.c 27 plane_t *plane; member in struct:__anon12892
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);
r_light.c 79 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;
gl_rlight.c 199 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;
r_bsp.c 171 // 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->type
    [all...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 3 # "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 = $plane{$table}
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
QTPixelBuffer.cpp 186 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/
gl_test.cpp 27 plane_t *plane; member in struct:__anon13255
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);
vid_vga.cpp 65 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, reps, repshift; local
    [all...]
world.h 30 qboolean allsolid; // if true, plane is not valid
35 plane_t plane; // surface normal at impact member in struct:__anon13438
r_light.cpp 79 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;
world.cpp 355 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 = hull->planes + node->planenum
    [all...]
gl_rlight.cpp 202 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;
r_bsp.cpp 171 // 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->type)
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
SimpleWaterProcessor.java 54 * Simple Water renders a simple plane that use reflection and refraction to look like water.
65 * //setting the water plane
67 * waterProcessor.setPlane(new Plane(Vector3f.UNIT_Y, waterLocation.dot(Vector3f.UNIT_Y)));
107 protected Plane plane = new Plane(Vector3f.UNIT_Y, Vector3f.ZERO.dot(Vector3f.UNIT_Y)); field in class:SimpleWaterProcessor
119 private Plane reflectionClipPlane;
120 private Plane refractionClipPlane;
205 if (!ray.intersectsWherePlane(plane, targetLocation)) {
207 ray.intersectsWherePlane(plane, targetLocation)
    [all...]
  /external/quake/quake/src/QW/server/
world.c 345 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 = hull->planes + node->planenum
    [all...]

Completed in 682 milliseconds

1 2 3 4 5 6 7 8 9