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

  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 74 private static int TILE_SIZE = 256;
81 private int[] mExpectedColors = new int [TILE_SIZE * TILE_SIZE];
82 private int[] mActualColors = new int [TILE_SIZE * TILE_SIZE];
282 int numCols = (width + TILE_SIZE - 1) / TILE_SIZE;
283 int numRows = (height + TILE_SIZE - 1) / TILE_SIZE;
289 Rect rect1 = new Rect(i * TILE_SIZE, j * TILE_SIZE
    [all...]
  /external/opencv/cv/src/
cvsnakes.cpp 106 #define TILE_SIZE (WTILE_SIZE + 2)
107 short dx[TILE_SIZE*TILE_SIZE], dy[TILE_SIZE*TILE_SIZE];
108 CvMat _dx = cvMat( TILE_SIZE, TILE_SIZE, CV_16SC1, dx );
109 CvMat _dy = cvMat( TILE_SIZE, TILE_SIZE, CV_16SC1, dy );
146 pX.init_deriv( TILE_SIZE+2, CV_8UC1, CV_16SC1, 1, 0, 3 )
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
TiledTexture.java 42 private static final int TILE_SIZE = CONTENT_SIZE + 2 * BORDER_SIZE;
126 mTextureWidth = TILE_SIZE;
127 mTextureHeight = TILE_SIZE;
140 if (x > 0) sCanvas.drawLine(x - 1, 0, x - 1, TILE_SIZE, sPaint);
141 if (y > 0) sCanvas.drawLine(0, y - 1, TILE_SIZE, y - 1, sPaint);
142 if (r < CONTENT_SIZE) sCanvas.drawLine(r, 0, r, TILE_SIZE, sPaint);
143 if (b < CONTENT_SIZE) sCanvas.drawLine(0, b, TILE_SIZE, b, sPaint);
236 sUploadBitmap = Bitmap.createBitmap(TILE_SIZE, TILE_SIZE, Config.ARGB_8888);
  /external/quake/quake/src/QW/client/
d_iface.h 216 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
r_surf.c 587 for (i=0 ; i<TILE_SIZE ; i++)
589 for (j=0 ; j<TILE_SIZE ; j++)
613 for (i=0 ; i<TILE_SIZE ; i++)
615 for (j=0 ; j<TILE_SIZE ; j++)
glquake2.h 67 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
r_sky.c 251 pnewsky += TILE_SIZE;
glquake.h 113 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
  /external/quake/quake/src/WinQuake/
d_iface.h 217 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
r_surf.cpp 604 for (i=0 ; i<TILE_SIZE ; i++)
606 for (j=0 ; j<TILE_SIZE ; j++)
630 for (i=0 ; i<TILE_SIZE ; i++)
632 for (j=0 ; j<TILE_SIZE ; j++)
r_sky.cpp 251 pnewsky += TILE_SIZE;
glquake.h 102 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf

Completed in 622 milliseconds