/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
|
/external/skia/experimental/sksg/geometry/ |
SkSGPlane.cpp | 15 Plane::Plane() = default; 17 void Plane::onClip(SkCanvas*, bool) const {} 19 void Plane::onDraw(SkCanvas* canvas, const SkPaint& paint) const { 23 SkRect Plane::onRevalidate(InvalidationController*, const SkMatrix&) { 29 SkPath Plane::onAsPath() const {
|
SkSGPlane.h | 21 class Plane final : public GeometryNode { 23 static sk_sp<Plane> Make() { return sk_sp<Plane>(new Plane()); } 33 Plane();
|
/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() {
|
/frameworks/base/media/java/android/media/ |
Image.java | 34 * {@link Plane} that describes the layout of the pixel data in that plane. Due 87 * <th>Plane count</th> 100 * <td>A luminance plane followed by the Cb and Cr chroma planes. 102 * plane (4:2:0 subsampling). Each pixel sample in each plane has 8 bits. 103 * Each plane has its own row stride and pixel stride.</td> 108 * <td>A luminance plane followed by the Cb and Cr chroma planes. 110 * plane (4:2:2 subsampling). Each pixel sample in each plane has 8 bits [all...] |
ImageUtils.java | 21 import android.media.Image.Plane; 122 Plane[] srcPlanes = src.getPlanes(); 123 Plane[] dstPlanes = dst.getPlanes(); 136 throw new IllegalArgumentException("Source plane image pixel stride " +
|
/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};
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkImageUtil.hpp | 84 struct Plane 97 deUint8 strideBytes; // Pixel stride (in bytes), usually plane elementSize 102 Plane planes[MAX_PLANES];
|
/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);
|
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/ |
CameraActivity.java | 30 import android.media.Image.Plane; 176 final Plane[] planes = image.getPlanes(); 384 protected void fillBytes(final Plane[] planes, final byte[][] yuvBytes) {
|
/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(); 556 Image.Plane yPlane = yuvImage.getPlanes()[0]; 557 Image.Plane uPlane = yuvImage.getPlanes()[1]; 558 Image.Plane vPlane = yuvImage.getPlanes()[2];
|