/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | BitmapDecode.java | 93 int[] pixels = new int[w*h]; in SampleView() local 94 mBitmap2.getPixels(pixels, 0, w, 0, 0, w, h); in SampleView() 95 mBitmap3 = Bitmap.createBitmap(pixels, 0, w, w, h, in SampleView() 97 mBitmap4 = Bitmap.createBitmap(pixels, 0, w, w, h, in SampleView()
|
D | ShapeDrawable1.java | 51 int[] pixels = new int[] { 0xFFFF0000, 0xFF00FF00, 0xFF0000FF, 0}; in makeTiling() local 52 Bitmap bm = Bitmap.createBitmap(pixels, 2, 2, in makeTiling()
|
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/ |
D | plasma.c | 188 static void fill_plasma( AndroidBitmapInfo* info, void* pixels, double t ) in fill_plasma() argument 200 uint16_t* line = (uint16_t*)pixels; in fill_plasma() 264 pixels = (char*)pixels + info->stride; in fill_plasma() 366 void* pixels; in Java_com_example_plasma_PlasmaView_renderPlasma() local 387 if ((ret = AndroidBitmap_lockPixels(env, bitmap, &pixels)) < 0) { in Java_com_example_plasma_PlasmaView_renderPlasma() 394 fill_plasma(&info, pixels, time_ms ); in Java_com_example_plasma_PlasmaView_renderPlasma()
|
/development/tools/recovery_l10n/src/com/android/recovery_l10n/ |
D | Main.java | 232 int[] pixels = new int[maxHeight * width]; 240 bm.getPixels(pixels, 0, w, 0, 0, w, h); 250 if (pixels[j*w+right-1] != 0xff000000) { 266 if (pixels[j*w+left] != 0xff000000) { 303 out.setPixels(pixels, left, w, 0, p, tw, h);
|
/development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/ |
D | ImagePixelization.java | 174 int[] pixels = new int[yPixels * xPixels]; in customImagePixelization() local 198 Arrays.fill(pixels, pixel); in customImagePixelization() 203 mPixelatedBitmap.setPixels(pixels, 0 , w, x , y, w, h); in customImagePixelization()
|
/development/ndk/platforms/android-18/samples/MoreTeapots/src/com/sample/helper/ |
D | NDKHelper.java | 155 public void getBitmapPixels(Bitmap bmp, int[] pixels) in getBitmapPixels() argument 159 bmp.getPixels(pixels, 0, w, 0, 0, w, h); in getBitmapPixels()
|
/development/ndk/platforms/android-17/samples/Teapot/src/com/sample/helper/ |
D | NDKHelper.java | 155 public void getBitmapPixels(Bitmap bmp, int[] pixels) in getBitmapPixels() argument 159 bmp.getPixels(pixels, 0, w, 0, 0, w, h); in getBitmapPixels()
|
/development/ndk/platforms/android-9/samples/native-plasma/jni/ |
D | plasma.c | 203 void* pixels = buffer->bits; in fill_plasma() local 209 uint16_t* line = (uint16_t*)pixels; in fill_plasma() 273 pixels = (uint16_t*)pixels + buffer->stride; in fill_plasma()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | MatrixTrackingGL.java | 537 int type, Buffer pixels) { in glReadPixels() argument 538 mgl.glReadPixels(x, y, width, height, format, type, pixels); in glReadPixels() 624 Buffer pixels) { in glTexImage2D() argument 626 format, type, pixels); in glTexImage2D() 647 Buffer pixels) { in glTexSubImage2D() argument 649 format, type, pixels); in glTexSubImage2D()
|
/development/ndk/platforms/android-5/include/GLES2/ |
D | gl2ext.h | 489 …th, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels); 490 …t, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels); 496 …th, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels); 497 …t, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
|
D | gl2.h | 566 …xels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels); 579 …at, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels); 584 …t, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels);
|
/development/ndk/platforms/android-4/include/GLES/ |
D | gl.h | 715 …xels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels); 730 …at, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels); 735 …t, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
|
/development/ndk/platforms/android-18/include/GLES3/ |
D | gl3.h | 899 …xels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels); 912 …at, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels); 917 …t, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels); 954 …th, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels); 955 …t, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
|
/development/ndk/sources/android/ndk_helper/ |
D | gl3stub.h | 394 …th, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels); 395 …t, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
|
D | gl3stub.c | 189 const GLvoid* pixels ); 200 const GLvoid* pixels );
|
/development/ndk/platforms/android-18/samples/gles3jni/jni/ |
D | gl3stub.c | 242 …th, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels); 243 …t, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
|
D | gl3stub.h | 384 …th, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels); 385 …t, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels);
|
/development/perftests/panorama/feature_mos/doc/ |
D | feature_mos_API_doxyfile | 1001 # used to set the initial width (in pixels) of the frame in which the tree
|
/development/perftests/panorama/feature_stab/doc/ |
D | dbreg_API_doxyfile | 1001 # used to set the initial width (in pixels) of the frame in which the tree
|