Searched defs:height (Results 1 - 25 of 39) sorted by relevance

12

/system/media/mca/effect/java/android/media/effect/
H A DEffect.java55 * <p>The input texture must be a valid texture name with the given width and height and must be
71 * @param height The height of the input texture in pixels.
74 public abstract void apply(int inputTexId, int width, int height, int outputTexId); argument
H A DFilterEffect.java88 protected Frame frameFromTexture(int texId, int width, int height) { argument
90 FrameFormat format = ImageFormat.create(width, height,
H A DSizeChangeEffect.java47 public void apply(int inputTexId, int width, int height, int outputTexId) { argument
50 Frame inputFrame = frameFromTexture(inputTexId, width, height);
H A DFilterGraphEffect.java87 public void apply(int inputTexId, int width, int height, int outputTexId) { argument
93 src.setInputValue("height", height);
H A DSingleFilterEffect.java70 public void apply(int inputTexId, int width, int height, int outputTexId) { argument
73 Frame inputFrame = frameFromTexture(inputTexId, width, height);
74 Frame outputFrame = frameFromTexture(outputTexId, width, height);
/system/media/mca/effect/java/android/media/effect/effects/
H A DIdentityEffect.java34 public void apply(int inputTexId, int width, int height, int outputTexId) { argument
37 Frame inputFrame = frameFromTexture(inputTexId, width, height);
38 Frame outputFrame = frameFromTexture(outputTexId, width, height);
/system/media/mca/filterfw/java/android/filterfw/format/
H A DImageFormat.java37 int height,
42 result.setDimensions(width, height);
52 int height,
56 height,
36 create(int width, int height, int colorspace, int bytesPerSample, int target) argument
51 create(int width, int height, int colorspace, int target) argument
/system/core/adb/
H A Dframebuffer_service.c41 unsigned int height; member in struct:fbinfo
90 fbinfo.height = h;
104 fbinfo.height = h;
118 fbinfo.height = h;
132 fbinfo.height = h;
146 fbinfo.height = h;
/system/media/mca/filterfw/java/android/filterfw/core/
H A DMutableFrameFormat.java64 public void setDimensions(int width, int height) { argument
67 dimensions[1] = height;
72 public void setDimensions(int width, int height, int depth) { argument
75 dimensions[1] = height;
H A DFilterSurfaceView.java118 int height) {
122 mHeight = height;
127 mListener.surfaceChanged(holder, format, width, height);
115 surfaceChanged(SurfaceHolder holder, int format, int width, int height) argument
H A DGLEnvironment.java106 public int registerSurfaceTexture(SurfaceTexture surfaceTexture, int width, int height) { argument
107 int result = nativeAddSurfaceTexture(surfaceTexture, width, height);
167 private native int nativeAddSurfaceTexture(SurfaceTexture surface, int width, int height); argument
/system/media/mca/filterfw/java/android/filterfw/geometry/
H A DRectangle.java31 public Rectangle(float x, float y, float width, float height) { argument
34 new Point(x, y + height),
35 new Point(x + width, y + height));
/system/media/mca/filterfw/native/core/
H A Dgeometry.h72 float x, y, width, height; member in struct:android::filterfw::Rect
76 width = height = 1.0f;
79 Rect(float x, float y, float width, float height) { argument
83 this->height = height;
/system/media/mca/filterpacks/base/native/
H A Dgeometry.h81 float height() const { return height_; } function in class:android::filterfw::SlantedRect
89 float x, y, width, height; member in struct:android::filterfw::Rect
93 width = height = 1.0f;
96 Rect(float x, float y, float width, float height) { argument
100 this->height = height;
/system/media/mca/filterpacks/imageproc/java/
H A DCropRectFilter.java47 @GenerateFieldPort(name = "height")
124 void updateSourceRect(int width, int height) { argument
126 mHeight = height;
H A DFisheyeFilter.java147 private void updateFrameSize(int width, int height) { argument
148 float center[] = {0.5f * width, 0.5f * height};
152 mProgram.setHostValue("inv_height", 1.0f / height);
155 mHeight = height;
H A DSharpenFilter.java132 private void updateFrameSize(int width, int height) { argument
134 mHeight = height;
H A DAutoFixFilter.java272 private void createHistogramFrame(FilterContext context, int width, int height, int[] data) { argument
277 int y_border_thickness = (int) (height * border_thickness_ratio);
279 int pixels = (width - 2 * x_border_thickness) * (height - 2 * y_border_thickness);
282 for (int y = y_border_thickness; y < height - y_border_thickness; ++y) {
H A DGrainFilter.java112 private void updateFrameSize(int width, int height) { argument
114 mHeight = height;
/system/media/mca/filterpacks/ui/java/
H A DSurfaceRenderFilter.java140 // will update our screen width and height.
225 int height) {
230 mScreenHeight = height;
222 surfaceChanged(SurfaceHolder holder, int format, int width, int height) argument
/system/media/wilhelm/src/itf/
H A DI3DMacroscopic.c23 SLmillimeter width, SLmillimeter height, SLmillimeter depth)
28 (0 <= height) && (height <= SL_MILLIMETER_MAX) &&
35 thiz->mSize.mHeight = height;
56 SLmillimeter height = thiz->mSize.mHeight; local
60 *pHeight = height;
22 I3DMacroscopic_SetSize(SL3DMacroscopicItf self, SLmillimeter width, SLmillimeter height, SLmillimeter depth) argument
/system/core/libpixelflinger/
H A Draster.cpp30 GGLsizei width, GGLsizei height, GGLenum type);
54 GGLsizei width, GGLsizei height, GGLenum type)
64 if (uint32_t(ys) > cb->height)
68 if (uint32_t(ys + height) > cb->height)
86 height -= offset;
91 if ((yd + height) > GGLint(c->state.scissor.bottom)) {
92 height = GGLint(c->state.scissor.bottom) - yd;
95 if (width<=0 || height<=0) {
112 size_t yc = height;
53 ggl_copyPixels(void* con, GGLint xs, GGLint ys, GGLsizei width, GGLsizei height, GGLenum type) argument
[all...]
/system/extras/tests/framebuffer/
H A Dfb_test.c34 int height; member in struct:simple_fb
97 fb->height = vi.yres;
105 fb->height = vi.yres;
192 return gr_fbs[0].height;
H A Dmdp_test.c95 static int get_framebuffer(int *fd, char **fb, int *width, int *height) argument
123 *height = vi.yres;
174 int fb_fd, width, height; local
273 if (get_framebuffer(&fb_fd, &fb, &width, &height)) {
282 src_imgh = height;
287 dst_imgh = height;
296 req->src.height = src_imgh;
306 req->dst.height = dst_imgh;
/system/media/mca/filterfw/jni/
H A Djni_gl_environment.cpp197 jint height) {
211 // anyway), but do care about width and height
215 ANativeWindow_setBuffersGeometry(window, width, height, 0);
193 Java_android_filterfw_core_GLEnvironment_nativeAddSurfaceTexture(JNIEnv* env, jobject thiz, jobject surfaceTexture, jint width, jint height) argument

Completed in 152 milliseconds

12