HomeSort by relevance Sort by last modified time
    Searched defs:Plane (Results 1 - 20 of 20) sorted by null

  /external/swiftshader/src/Renderer/
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...]
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...]
  /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...]
  /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...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkImageUtil.hpp 83 struct Plane
96 deUint8 strideBytes; // Pixel stride (in bytes), usually plane elementSize
101 Plane planes[MAX_PLANES];
  /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...]
  /external/dng_sdk/source/
dng_misc_opcodes.h 57 /// plane range, and row/column pitch (e.g., for mosaic images). Useful for
86 uint32 plane = 0,
92 , fPlane (plane)
107 /// The first plane.
109 const uint32 Plane () const
  /external/eigen/test/
geo_hyperplane.cpp 133 typedef Hyperplane<Scalar, 3> Plane;
147 Plane p0 = Plane::Through(v0, v1, v2);
  /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...]
  /external/v8/benchmarks/
raytrace.js 66 // flog/shape/plane.js
467 Flog.RayTracer.Shape.Plane = Class.create();
469 Flog.RayTracer.Shape.Plane.prototype = {
513 return 'Plane [' + this.position + ', d=' + this.d + ']';
774 if(shadowInfo.isHit && shadowInfo.shape != info.shape /*&& shadowInfo.shape.type != 'PLANE'*/){
849 var plane = new Flog.RayTracer.Shape.Plane(
862 scene.shapes.push(plane);
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 745 milliseconds