Searched refs:border (Results 1 - 15 of 15) sorted by relevance

/development/perftests/panorama/feature_mos/src/mosaic/
H A DPyramid.cpp28 real width, real height, real border)
30 real border2 = (real) (border << 1);
44 curr->border = border;
46 curr->ptr = y + border;
50 *y = position + border;
62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border) argument
64 real border2 = (real) (border << 1);
74 img->border = border;
27 allocatePyramidPacked(real levels, real width, real height, real border) argument
[all...]
H A DGeometry.h50 // Clip x to be within [-border,width+border-1]
51 inline void clipToSegment(int &x, int width, int border) argument
53 if(x < -border)
54 x = -border;
55 else if(x >= width+border)
56 x = width + border - 1;
59 // Return true if x within [-border,width+border-1]
60 inline bool inSegment(int x, int width, int border) argument
[all...]
H A DPyramid.h37 real border; // border size member in class:PyramidShort
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border);
H A DImageUtils.h107 static ImageType allocateImage(int width, int height, int numChannels, short int border = 0);
145 unsigned short border; member in struct:__anon1399
H A DImageUtils.cpp333 ImageType ImageUtils::allocateImage(int width, int height, int numChannels, short int border) argument
374 yuv->Y.border = yuv->U.border = yuv->V.border = (unsigned short) 0;
/development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/
H A Dmain.css36 border-bottom: solid 1px #ccc;
48 border-collapse: collapse;
67 border-bottom: solid 1px #000;
71 border-bottom: solid 1px #eee;
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
H A DMatrixTrackingGL.java147 int internalformat, int width, int height, int border,
150 height, border, imageSize, data);
161 int x, int y, int width, int height, int border) {
163 height, border);
623 int width, int height, int border, int format, int type,
625 mgl.glTexImage2D(target, level, internalformat, width, height, border,
146 glCompressedTexImage2D(int target, int level, int internalformat, int width, int height, int border, int imageSize, Buffer data) argument
160 glCopyTexImage2D(int target, int level, int internalformat, int x, int y, int width, int height, int border) argument
622 glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, Buffer pixels) argument
/development/ndk/platforms/android-5/include/GLES2/
H A Dgl2ext.h489 GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
492 GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
496 typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
499 typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
H A Dgl2.h495 GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid* data);
497 GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
579 GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
/development/ndk/platforms/android-4/include/GLES/
H A Dgl.h650 GL_API void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data);
652 GL_API void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
730 GL_API void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
/development/ndk/platforms/android-18/include/GLES3/
H A Dgl3.h828 GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid* data);
830 GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
912 GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
954 GL_APICALL void GL_APIENTRY glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
957 GL_APICALL void GL_APIENTRY glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
/development/ndk/platforms/android-18/samples/gles3jni/jni/
H A Dgl3stub.c242 GL_APICALL void (* GL_APIENTRY glTexImage3D) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
245 GL_APICALL void (* GL_APIENTRY glCompressedTexImage3D) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
H A Dgl3stub.h384 extern GL_APICALL void (* GL_APIENTRY glTexImage3D) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
387 extern GL_APICALL void (* GL_APIENTRY glCompressedTexImage3D) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);
/development/ndk/sources/android/ndk_helper/
H A Dgl3stub.c186 GLint border,
216 GLint border,
H A Dgl3stub.h394 extern GL_APICALL void (* GL_APIENTRY glTexImage3D) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels);
397 extern GL_APICALL void (* GL_APIENTRY glCompressedTexImage3D) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data);

Completed in 332 milliseconds