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

1 2 3

  /external/swiftshader/src/Renderer/
Plane.hpp 24 struct Plane
31 Plane();
32 Plane(float A, float B, float C, float D); // Plane equation
33 Plane(const float ABCD[4]);
35 friend Plane operator*(const Plane &p, const Matrix &A); // Transform plane by matrix (post-multiply)
36 friend Plane operator*(const Matrix &A, const Plane &p); // Transform plane by matrix (pre-multiply
    [all...]
Plane.cpp 15 #include "Plane.hpp"
21 Plane::Plane()
25 Plane::Plane(float p_A, float p_B, float p_C, float p_D)
33 Plane::Plane(const float ABCD[4])
41 Plane operator*(const Plane &p, const Matrix &T)
45 return Plane(p.A * M(1, 1) + p.B * M(1, 2) + p.C * M(1, 3) + p.D * M(1, 4)
    [all...]
Vector.hpp 22 struct Plane;
79 static Vector mirror(const Vector &v, const Plane &p);
80 static Vector reflect(const Vector &v, const Plane &p);
Clipper.hpp 18 #include "Plane.hpp"
32 // Indicates the vertex is outside the respective frustum plane
69 void clipPlane(Polygon &polygon, const Plane &plane);
73 float n; // Near clip plane distance
Renderer.hpp 21 #include "Plane.hpp"
184 Plane clipPlane[6];
374 virtual void setClipPlane(unsigned int index, const float plane[4]);
435 Plane userPlane[MAX_CLIP_PLANES];
436 Plane clipPlane[MAX_CLIP_PLANES]; // Tranformed to clip space
  /frameworks/base/media/java/android/media/
Image.java 32 * {@link Plane} that describes the layout of the pixel data in that plane. Due
85 * <th>Plane count</th>
98 * <td>A luminance plane followed by the Cb and Cr chroma planes.
100 * plane (4:2:0 subsampling). Each pixel sample in each plane has 8 bits.
101 * Each plane has its own row stride and pixel stride.</td>
106 * <td>A luminance plane followed by the Cb and Cr chroma planes.
108 * plane (4:2:2 subsampling). Each pixel sample in each plane has 8 bits
    [all...]
ImageUtils.java 21 import android.media.Image.Plane;
117 Plane[] srcPlanes = src.getPlanes();
118 Plane[] dstPlanes = dst.getPlanes();
131 throw new IllegalArgumentException("Source plane image pixel stride " +
  /cts/tests/tests/media/src/android/media/cts/
CodecImage.java 32 * {@link Plane} that describes the layout of the pixel data in that plane. Due
64 * <th>Plane count</th>
77 * <td>A luminance plane followed by the Cb and Cr chroma planes.
79 * plane (4:2:0 subsampling). Each pixel sample in each plane has 8 bits.
80 * Each plane has its own row stride and pixel stride.</td>
85 * <td>A single plane of raw sensor image data, with 16 bits per color
99 * are subsampled, this is the width of the largest-resolution plane.
105 * are subsampled, this is the height of the largest-resolution plane
    [all...]
CodecUtils.java 47 private final Plane[] mPlanes;
51 Image.Plane[] planes = mImage.getPlanes();
53 mPlanes = new Plane[planes.length];
84 public Plane[] getPlanes() {
93 private static class PlaneWrapper extends CodecImage.Plane {
94 private final Image.Plane mPlane;
96 PlaneWrapper(Image.Plane plane) {
97 mPlane = plane;
YUVImage.java 30 private final Plane[] mPlanes;
42 mPlanes = new Plane[3];
93 public Plane[] getPlanes() {
104 class YUVPlane extends CodecImage.Plane {
  /packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
ImageProxy.java 40 * An interface for {@link android.media.Image.Plane} with two convenient
48 public interface Plane {
51 * @see {@link android.media.Image.Plane#getRowStride()}
56 * @see {@link android.media.Image.Plane#getPixelStride()}
61 * @see {@link android.media.Image.Plane#getBuffer()}
89 public List<Plane> getPlanes();
AndroidImageProxy.java 39 * An {@link ImageProxy.Plane} backed by an
40 * {@link android.media.Image.Plane}.
42 public class Plane implements ImageProxy.Plane {
47 public Plane(Image.Plane imagePlane) {
48 // Copying out the contents of the Image.Plane means that this Plane
58 * @see {@link android.media.Image.Plane#getRowStride}
66 * @see {@link android.media.Image.Plane#getPixelStride
    [all...]
ForwardingImageProxy.java 75 public List<Plane> getPlanes() {
  /packages/apps/Camera2/jni/
jpegutil.h 32 struct Plane;
83 * Represents a model for accessing pixel data for a single plane of an image.
87 struct Plane {
88 // The dimensions of this plane of the image
102 * an image plane as contiguous arrays, suitable for use with libjpeg.
111 * @param plane the plane to iterate over
113 * coordinate space of the plane
118 inline RowIterator(Plane plane, Transform transform, int row_length)
    [all...]
jpegutil.cpp 308 /** Y Plane */
310 /** Cb Plane */
312 /** Cr Plane */
338 const Plane yP = {width, height, yBuf, yPStride, yRStride};
339 const Plane cbP = {width / 2, height / 2, cbBuf, cbPStride, cbRStride};
340 const Plane crP = {width / 2, height / 2, crBuf, crPStride, crRStride};
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
ImageReaderTest.java 23 import android.media.Image.Plane;
67 mock(Plane.class);
  /external/dng_sdk/source/
dng_misc_opcodes.cpp 411 for (uint32 plane = fAreaSpec.Plane ();
412 plane < fAreaSpec.Plane () + fAreaSpec.Planes () &&
413 plane < buffer.Planes ();
414 plane++)
417 DoMapArea16 (buffer.DirtyPixel_uint16 (overlap.t, overlap.l, plane),
634 for (uint32 plane = fAreaSpec.Plane ();
635 plane < fAreaSpec.Plane () + fAreaSpec.Planes () &
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
JpegUtilNative.java 44 * The input is defined as a set of 3 planes of 8-bit samples, one plane for
46 * The Y plane is assumed to have the same width and height of the entire
50 * Each plane is specified by a direct java.nio.ByteBuffer, a pixel-stride,
106 * Copies the Image.Plane specified by planeBuf, pStride, and rStride to the
111 * @param planeBuf the native ByteBuffer containing the image plane data
122 public static void copyImagePlaneToBitmap(ImageProxy.Plane plane, Bitmap bitmap, int rot90) {
130 copyImagePlaneToBitmap(width, height, plane.getBuffer(), plane.getPixelStride(),
131 plane.getRowStride(), bitmap, rot90)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsUtils.java 29 import android.media.Image.Plane;
182 Plane[] planes = image.getPlanes();
233 "Reading image: fmt %d, plane %d, w %d, h %d," +
284 Plane[] planes = image.getPlanes();
  /external/eigen/test/
geo_hyperplane.cpp 133 typedef Hyperplane<Scalar, 3> Plane;
147 Plane p0 = Plane::Through(v0, v1, v2);
  /frameworks/base/tests/Camera2Tests/CameraToo/tests/src/com/example/android/camera2/cameratoo/
CameraTooTest.java 154 Image.Plane plane = mock(Image.Plane.class); local
155 when(plane.getBuffer()).thenReturn(buf);
156 when(plane.getPixelStride()).thenReturn(1);
157 when(plane.getRowStride()).thenReturn(5);
159 Image.Plane[] onlyPlaneThatMatters = { plane };
  /frameworks/base/core/java/android/hardware/camera2/
DngCreator.java 439 Image.Plane[] planes = pixels.getPlanes();
555 Image.Plane yPlane = yuvImage.getPlanes()[0];
556 Image.Plane uPlane = yuvImage.getPlanes()[1];
557 Image.Plane vPlane = yuvImage.getPlanes()[2];
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskChainedCompressImageToJpeg.java 53 final List<ImageProxy.Plane> planeList = img.proxy.getPlanes();
TaskJpegEncode.java 79 final List<ImageProxy.Plane> planeList = img.getPlanes();
104 final List<ImageProxy.Plane> planeList = img.getPlanes();
  /cts/tests/camera/src/android/hardware/camera2/cts/
ImageWriterTest.java 28 import android.media.Image.Plane;
235 Plane closedPlane = inputImage.getPlanes()[0];

Completed in 545 milliseconds

1 2 3