OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fSwizzle
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/skia/include/gpu/
GrTextureAccess.h
154
// below assumes all chars in
fSwizzle
are initialized even if string is < 4 chars long.
155
SkASSERT(memcmp(
fSwizzle
, other.
fSwizzle
, sizeof(
fSwizzle
)-1) ==
156
strcmp(
fSwizzle
, other.
fSwizzle
));
160
(0 == memcmp(
fSwizzle
, other.
fSwizzle
, sizeof(
fSwizzle
)-1));
175
const char* getSwizzle() const { return
fSwizzle
; }
[
all
...]
/external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProcessor.h
54
memcpy(
fSwizzle
, access.getSwizzle(), 5);
60
const char* swizzle() const { return
fSwizzle
; }
65
char
fSwizzle
[5];
/external/chromium_org/third_party/skia/src/gpu/
GrTextureAccess.cpp
14
memcpy(
fSwizzle
, "void", 5);
70
memcpy(
fSwizzle
, "rgba", 5);
80
memcpy(
fSwizzle
, "rgba", 5);
86
memset(
fSwizzle
, '\0', 5);
88
fSwizzle
[i] = swizzle[i];
Completed in 107 milliseconds