Searched refs:pixels (Results 51 - 58 of 58) sorted by relevance

123

/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java2252 int type, Buffer pixels) {
2260 arg("pixels", pixels.toString());
2263 mgl.glReadPixels(x, y, width, height, format, type, pixels);
2465 Buffer pixels) {
2475 arg("pixels", pixels.toString());
2479 format, type, pixels);
2529 Buffer pixels) {
2539 arg("pixels", pixel
2251 glReadPixels(int x, int y, int width, int height, int format, int type, Buffer pixels) argument
2463 glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, Buffer pixels) argument
2527 glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, Buffer pixels) argument
[all...]
H A DGLES30.java366 // C function void glTexImage3D ( GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels )
378 java.nio.Buffer pixels
396 // C function void glTexSubImage3D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels )
409 java.nio.Buffer pixels
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp680 void* const pixels = (char*)data + palette_size; local
683 memcpy(pixels, p, size);
819 * Encode a block of pixels.
822 * 4 x 4 square of 3-byte pixels in form R, G, B. Byte (3 * (x + 4 * y) is the R
852 * Decode a block of pixels.
857 * 4 x 4 square of 3-byte pixels in form R, G, B. Byte (3 * (x + 4 * y) is the R
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp82 * black pixels.
3048 uint32_t* pixels = new uint32_t[reqWidth*reqHeight]; local
3049 getRenderEngine().readPixels(0, 0, reqWidth, reqHeight, pixels);
3050 checkScreenshot(reqWidth, reqHeight, reqWidth, pixels,
3052 delete [] pixels;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DCameraStreamer.java612 ByteBuffer pixels = ByteBuffer.wrap(readBuffer());
613 clientTex.allocateWithPixels(pixels, texWidth, texHeight);
623 // Convert pixels into target frame
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp296 pixmap.data = (uint8_t*)ref->pixels();
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp3575 void GLTrace_glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels) { argument
3617 // copy argument pixels
3621 arg_pixels->add_intvalue((int)pixels);
3626 glContext->hooks->gl.glReadPixels(x, y, width, height, format, type, pixels);
3631 (void *) pixels,
4124 void GLTrace_glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels) { argument
4178 // copy argument pixels
4182 arg_pixels->add_intvalue((int)pixels);
4187 glContext->hooks->gl.glTexImage2D(target, level, internalformat, width, height, border, format, type, pixels);
4192 (void *) pixels,
4363 GLTrace_glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels) argument
5813 GLTrace_glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels) argument
5896 GLTrace_glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels) argument
10641 GLTrace_glTexImage3DOES(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels) argument
10724 GLTrace_glTexSubImage3DOES(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java1493 * @return the height of one standard line in pixels. Note that markup
2493 * @return the size (in pixels) of the default text size in this TextView.
3063 * height was set in pixels instead using {@link #setMinHeight(int) or #setHeight(int)}.
3074 * Makes the TextView at least this many pixels tall.
3090 * @return the minimum height of this TextView expressed in pixels, or -1 if the minimum
3119 * height was set in pixels instead using {@link #setMaxHeight(int) or #setHeight(int)}.
3130 * Makes the TextView at most this many pixels tall. This option is mutually exclusive with the
3147 * @return the maximum height of this TextView expressed in pixels, or -1 if the maximum
3176 * Makes the TextView exactly this many pixels tall.
3186 public void setHeight(int pixels) { argument
3334 setWidth(int pixels) argument
[all...]

Completed in 426 milliseconds

123