HomeSort by relevance Sort by last modified time
    Searched refs:crop (Results 1 - 24 of 24) sorted by null

  /frameworks/base/opengl/tests/finish/
finish.cpp 105 GLint crop[4] = { 0, 512, 512, -512 };
106 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
119 GLint crop[4] = { 0, 1, 1, -1 };
120 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
133 GLint crop[4] = { 0, 512, 512, -512 };
134 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
148 GLint crop[4] = { 0, 1, 1, -1 };
149 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
165 GLint crop[4] = { 0, 512, 512, -512 };
166 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
    [all...]
  /device/samsung/crespo/liboverlay/
v4l2_utils.c 129 void dump_crop(struct v4l2_crop *crop)
131 LOGV("crop l: %d ", crop->c.left);
132 LOGV("crop t: %d ", crop->c.top);
133 LOGV("crop w: %d ", crop->c.width);
134 LOGV("crop h: %d\n", crop->c.height);
148 struct v4l2_crop crop; local
421 struct v4l2_crop crop; local
446 struct v4l2_crop crop; local
    [all...]
  /hardware/ti/omap3/liboverlay/
v4l2_utils.c 117 void dump_crop(struct v4l2_crop *crop)
119 LOGI("crop l: %d ", crop->c.left);
120 LOGI("crop t: %d ", crop->c.top);
121 LOGI("crop w: %d ", crop->c.width);
122 LOGI("crop h: %d\n", crop->c.height);
135 struct v4l2_crop crop; local
337 struct v4l2_crop crop; local
355 struct v4l2_crop crop; local
    [all...]
  /system/core/libpixelflinger/
raster.cpp 146 GGLint gglBitBlti(GGLContext* con, int tmu, GGLint crop[4], GGLint where[4])
168 const GGLint Wcr = crop[2];
169 const GGLint Hcr = crop[3];
173 const GGLint Ucr = crop[0];
174 const GGLint Vcr = crop[1];
190 const GGLint Ucr = crop[0] << 16;
191 const GGLint Vcr = crop[1] << 16;
192 const GGLint Wcr = crop[2] << 16;
193 const GGLint Hcr = crop[3] << 16;
  /frameworks/base/libs/surfaceflinger_client/
SharedBufferStack.cpp 66 status_t SharedBufferStack::setCrop(int buffer, const Rect& crop)
71 buffers[buffer].crop.l = uint16_t(crop.left);
72 buffers[buffer].crop.t = uint16_t(crop.top);
73 buffers[buffer].crop.r = uint16_t(crop.right);
74 buffers[buffer].crop.b = uint16_t(crop.bottom);
153 res.left = buffers[buffer].crop.l
    [all...]
Surface.cpp 766 return crop( reinterpret_cast<Rect const*>(rect) );
828 int Surface::crop(Rect const* rect) function in class:android::Surface
    [all...]
  /frameworks/base/services/surfaceflinger/
LayerBuffer.cpp 272 src.crop.l = 0;
273 src.crop.t = 0;
274 src.crop.r = buffers.w;
275 src.crop.b = buffers.h;
470 region_iterator clip(Region(Rect(dst.crop.r, dst.crop.b)));
475 &dst.crop, &src.crop, &clip);
492 t.width = src.crop.r;
493 t.height = src.crop.b
    [all...]
LayerBase.cpp 499 void LayerBase::setBufferCrop(const Rect& crop) {
500 if (!crop.isEmpty()) {
501 mBufferCrop = crop;
LayerBase.h 231 void setBufferCrop(const Rect& crop);
LayerBuffer.h 91 copybit_rect_t crop; member in struct:android::LayerBuffer::NativeBuffer
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 376 int[] crop = new int[4]; local
377 crop[0] = cropU;
378 crop[1] = cropV;
379 crop[2] = cropW;
380 crop[3] = cropH;
381 mCrop = crop;
  /frameworks/base/opengl/tests/textures/
textures.cpp 65 GLint crop[4] = { 0, 4, 4, -4 };
67 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
  /frameworks/base/include/ui/egl/
android_natives.h 279 * native_window_set_crop(..., crop)
281 * A buffer's crop region is scaled to match the surface's size.
283 * The specified crop region applies to all buffers queued after it is called.
285 * if 'crop' is NULL, subsequently queued buffers won't be cropped.
287 * An error is returned if for instance the crop region is invalid,
292 android_native_rect_t const * crop)
294 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop);
  /frameworks/base/opengl/tests/filter/
filter.cpp 76 GLint crop[4] = { 0, 4, 4, -4 };
78 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 107 GLint crop[4] = { 0, h, w, -h }; local
135 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
160 GLint crop[4] = { 0, h, w, -h }; local
194 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
OMX_VPP.c 692 /* crop */
1507 OMX_CONFIG_RECTTYPE *crop = (OMX_CONFIG_RECTTYPE*)ComponentConfigStructure; local
1643 OMX_CONFIG_RECTTYPE *crop = (OMX_CONFIG_RECTTYPE*)ComponentConfigStructure; local
    [all...]
  /frameworks/base/include/private/surfaceflinger/
SharedBufferStack.h 90 SmallRect crop; member in struct:android::SharedBufferStack::BufferData
  /frameworks/base/include/surfaceflinger/
Surface.h 226 int crop(Rect const* rect);
  /system/core/include/pixelflinger/
pixelflinger.h 321 GGLint crop[4],
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
OMX_JpegEncoder.c 1522 OMX_CONFIG_RECTTYPE *crop = (OMX_CONFIG_RECTTYPE*)ComponentConfigStructure; local
    [all...]
  /frameworks/base/libs/rs/
rsScriptC_Lib.cpp 776 //GLint crop[4] = {0, h, w, -h};
795 GLint crop[4] = {cx0, cy0, cx1, cy1}; local
796 glTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_CROP_RECT_OES, crop);
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
HudLayer.java 366 new PopupMenu.Option(mContext.getResources().getString(Res.string.crop), mContext.getResources().getDrawable(
375 final Intent intent = new Intent("com.android.camera.action.CROP");
    [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex 195 % Do @cropmarks to get crop marks
    [all...]
  /external/grub/docs/
texinfo.tex 267 % Do @cropmarks to get crop marks.
    [all...]

Completed in 3438 milliseconds