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

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_limits.h 40 #define TILE_SIZE (1 << TILE_ORDER)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_limits.h 40 #define TILE_SIZE (1 << TILE_ORDER)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_tex_tile_cache.h 44 #define TILE_SIZE (1 << TILE_SIZE_LOG2)
55 unsigned x:TEX_ADDR_BITS; /* 16K / TILE_SIZE */
56 unsigned y:TEX_ADDR_BITS; /* 16K / TILE_SIZE */
70 float color[TILE_SIZE][TILE_SIZE][4];
71 unsigned int colorui[TILE_SIZE][TILE_SIZE][4];
72 int colori[TILE_SIZE][TILE_SIZE][4];
142 addr.bits.x = x / TILE_SIZE;
    [all...]
sp_tile_cache.h 43 #define TILE_SIZE (1 << TILE_SIZE_LOG2)
54 unsigned x:TILE_ADDR_BITS; /* 16K / TILE_SIZE */
55 unsigned y:TILE_ADDR_BITS; /* 16K / TILE_SIZE */
66 float color[TILE_SIZE][TILE_SIZE][4];
67 uint color32[TILE_SIZE][TILE_SIZE];
68 uint depth32[TILE_SIZE][TILE_SIZE];
69 ushort depth16[TILE_SIZE][TILE_SIZE]
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_tile_cache.h 44 #define TILE_SIZE (1 << TILE_SIZE_LOG2)
55 unsigned x:TEX_ADDR_BITS; /* 16K / TILE_SIZE */
56 unsigned y:TEX_ADDR_BITS; /* 16K / TILE_SIZE */
70 float color[TILE_SIZE][TILE_SIZE][4];
71 unsigned int colorui[TILE_SIZE][TILE_SIZE][4];
72 int colori[TILE_SIZE][TILE_SIZE][4];
142 addr.bits.x = x / TILE_SIZE;
    [all...]
sp_tile_cache.h 43 #define TILE_SIZE (1 << TILE_SIZE_LOG2)
54 unsigned x:TILE_ADDR_BITS; /* 16K / TILE_SIZE */
55 unsigned y:TILE_ADDR_BITS; /* 16K / TILE_SIZE */
66 float color[TILE_SIZE][TILE_SIZE][4];
67 uint color32[TILE_SIZE][TILE_SIZE];
68 uint depth32[TILE_SIZE][TILE_SIZE];
69 ushort depth16[TILE_SIZE][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...]
  /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];
312 int numCols = (width + TILE_SIZE - 1) / TILE_SIZE;
313 int numRows = (height + TILE_SIZE - 1) / TILE_SIZE;
319 Rect rect1 = new Rect(i * TILE_SIZE, j * TILE_SIZE
    [all...]

Completed in 378 milliseconds