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

/haiku/src/add-ons/screen_savers/flurry/
H A DTexture.cpp38 static GLubyte smallTextureArray[32][32]; variable
51 t = (float)smallTextureArray[i][j] * 4;
52 t += (float)smallTextureArray[i - 1][j];
53 t += (float)smallTextureArray[i + 1][j];
54 t += (float)smallTextureArray[i][j - 1];
55 t += (float)smallTextureArray[i][j + 1];
63 smallTextureArray[i][j] = filter[i][j];
78 t = (float) MIN_(255, smallTextureArray[i][j] + speck);
79 smallTextureArray[i][j] = (GLubyte)t;
84 t = (float)MAX_(0, smallTextureArray[
[all...]

Completed in 81 milliseconds