/external/freetype/src/raster/ |
rastpic.c | 5 /* The FreeType position independent code services for raster module. */ 34 if ( pic_container->raster ) 36 RasterPIC* container = (RasterPIC*)pic_container->raster; 40 pic_container->raster = NULL; 56 if ( pic_container->raster ) 58 ((RasterPIC*)pic_container->raster)->ref_count++; 66 pic_container->raster = container;
|
rastpic.h | 5 /* The FreeType position independent code services for raster module. */ 38 #define GET_PIC(lib) ((RasterPIC*)((lib)->pic_container.raster))
|
raster.c | 3 /* raster.c */
|
ftrend1.c | 29 /* initialize renderer -- init its raster */ 36 render->clazz->raster_class->raster_reset( render->raster, 50 /* we simply pass it to the raster */ 51 return render->clazz->raster_class->raster_set_mode( render->raster, 224 error = render->raster_render( render->raster, ¶ms );
|
/sdk/chimpchat/src/com/android/chimpchat/adb/image/ |
ImageUtils.java | 25 import java.awt.image.Raster; 83 WritableRaster raster = Raster.createWritableRaster(sampleModel, dataBuffer, local 85 return new BufferedImage(new ThirtyTwoBitColorModel(rawImage), raster, false, EMPTY_HASH); 96 WritableRaster raster = Raster.createWritableRaster(sampleModel, dataBuffer, local 98 return new BufferedImage(new SixteenBitColorModel(rawImage), raster, false, EMPTY_HASH);
|
SixteenBitColorModel.java | 24 import java.awt.image.Raster; 41 public boolean isCompatibleRaster(Raster raster) {
|
ThirtyTwoBitColorModel.java | 24 import java.awt.image.Raster; 66 public boolean isCompatibleRaster(Raster raster) {
|
/external/mesa3d/docs/ |
MESA_window_pos.spec | 31 In order to set the current raster position to a specific window 39 current raster position, bypassing the modelview matrix, the 43 This greatly simplifies the process of setting the current raster 82 Alternately, the current raster position may be set by one of the 95 clip test operation always passes. The current raster position values 97 color, color index and texture coordinate update the current raster
|
/external/freetype/include/freetype/ |
ftchapters.h | 95 /* raster */
|
ftimage.h | 5 /* FreeType glyph image formats and default raster interface */ 22 /* Note: A `raster' is simply a scan-line converter, used to render */ 255 /* A structure used to describe a bitmap or pixmap to the raster. */ [all...] |
ftmoderr.h | 120 FT_MODERRDEF( Raster, 0xF00, "raster module" ) 122 FT_MODERRDEF( Smooth, 0x1100, "smooth raster module" )
|
fterrdef.h | 131 /* raster errors */ 134 "raster uninitialized" ) 136 "raster corrupted" ) 138 "raster overflow" )
|
/sdk/draw9patch/src/com/android/draw9patch/graphics/ |
GraphicsUtilities.java | 21 import java.awt.image.Raster; 89 Raster raster = img.getRaster(); local 90 return (int[]) raster.getDataElements(x, y, w, h, pixels);
|
/sdk/ninepatch/src/com/android/ninepatch/ |
GraphicsUtilities.java | 21 import java.awt.image.Raster; 95 Raster raster = img.getRaster(); local 96 return (int[]) raster.getDataElements(x, y, w, h, pixels);
|
/external/freetype/ |
Android.mk | 27 src/raster/raster.c \
|
/external/opencv/cvaux/src/ |
cvmorphing.cpp | 46 icvMorphEpilines8uC3( uchar * first_pix, /* raster epiline from image 1 */ 47 uchar * second_pix, /* raster epiline from image 2 */ 48 uchar * dst_pix, /* raster epiline from dest image */ 280 uchar * first_pix, /* raster epilines from the first image */ 282 uchar * second_pix, /* raster epilines from the second image */ 284 uchar * dst_pix, /* raster epiline from the destination image */ 361 uchar * first_pix, /* raster epilines from the first image */ 363 uchar * second_pix, /* raster epilines from the second image */ 365 uchar * dst_pix, /* raster epiline from the destination image */ 380 first_pix, /* raster epilines from the first image * [all...] |
/external/freetype/include/freetype/internal/ |
ftpic.h | 43 void* raster; member in struct:FT_PIC_Container_
|
/system/core/libpixelflinger/ |
raster.h | 1 /* libs/pixelflinger/raster.h
|
raster.cpp | 1 /* libs/pixelflinger/raster.cpp 22 #include "raster.h" 43 // raster pos should be processed just like glVertex 44 c->state.raster.x = x; 45 c->state.raster.y = y; 71 // copy to current raster position 72 GGLint xd = gglFixedToIntRound(c->state.raster.x); 73 GGLint yd = gglFixedToIntRound(c->state.raster.y);
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
omxVCM4P10_DecodeChromaDcCoeffsToPairCAVLC.c | 28 * Performs CAVLC decoding and inverse raster scan for 2x2 block of 30 * buffer are stored in increasing raster scan order, namely position order.
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
omxVCM4P10_DecodeChromaDcCoeffsToPairCAVLC.c | 28 * Performs CAVLC decoding and inverse raster scan for 2x2 block of 30 * buffer are stored in increasing raster scan order, namely position order.
|
/frameworks/base/libs/rs/ |
rsProgramRaster.cpp | 30 rsc->mHal.funcs.raster.init(rsc, this); 43 mRSC->mHal.funcs.raster.destroy(mRSC, this); 53 rsc->mHal.funcs.raster.setActive(rsc, this);
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
omxVCM4P10_DecodeChromaDcCoeffsToPairCAVLC.c | 28 * Performs CAVLC decoding and inverse raster scan for a 2x2 block of 33 * raster-scan position of the coefficient, while the coefficient entry
|
/cts/tools/host/src/com/android/cts/ |
HostUtils.java | 24 import java.awt.image.Raster; 82 // TYPE_USHORT interface to the byte array. But Raster.createRaster at 95 Raster raster = Raster.createRaster(sampleModel, local 97 im.setData(raster);
|
/external/freetype/src/smooth/ |
ftsmooth.c | 30 /* initialize renderer -- init its raster */ 37 render->clazz->raster_class->raster_reset( render->raster, 51 /* we simply pass it to the raster */ 52 return render->clazz->raster_class->raster_set_mode( render->raster, 273 error = render->raster_render( render->raster, ¶ms ); 297 error = render->raster_render( render->raster, ¶ms );
|