OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textureData
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/skia/tests/
ReadWriteAlphaTest.cpp
29
unsigned char
textureData
[X_SIZE][Y_SIZE];
31
memset(
textureData
, 0, X_SIZE * Y_SIZE);
43
GrTexture* texture = context->createUncachedTexture(desc,
textureData
, 0);
53
textureData
[x][y] = x*Y_SIZE+y;
59
textureData
, 0);
75
if (
textureData
[x][y] != readback[x][y]) {
ClipCacheTest.cpp
21
unsigned char
textureData
[X_SIZE][Y_SIZE][4];
23
memset(
textureData
, 0, 4* X_SIZE * Y_SIZE);
34
GrTexture* texture = context->createUncachedTexture(desc,
textureData
, 0);
/external/chromium_org/third_party/skia/gm/
bitmaprect.cpp
102
SkColor
textureData
[gXSize][gYSize] = {
112
*bitmap->getAddr32(x, y) =
textureData
[x][y];
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DeviceInfoResult.java
108
String
textureData
= getMetric(metricsCopy,
123
serializeOpenGLCompressedTextureFormatsInfo(serializer,
textureData
);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
Image11.cpp
461
std::vector< std::vector<BYTE> >
textureData
;
463
lodOffset + 1, &initialData, &
textureData
);
502
std::vector< std::vector<BYTE> >
textureData
;
504
lodOffset + 1, &initialData, &
textureData
);
/external/deqp/modules/glshared/
glsStateChangePerfTestCases.cpp
343
vector<deUint8>
textureData
;
344
genTextureData(
textureData
, textureWidth, textureHeight);
346
DE_ASSERT(
textureData
.size() == textureWidth * textureHeight * 4);
358
gl.texImage2D(GL_TEXTURE_2D, 0, GL_RGBA, textureWidth, textureHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, &(
textureData
[0]));
Completed in 3191 milliseconds