OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mDebugWidth
(Results
1 - 2
of
2
) sorted by null
/cts/apps/CtsVerifier/lib/colorchecker/
imagetesthandler.cpp
39
mDebugWidth
= debugWidth;
45
if ((inputHeight == mDebugHeight) && (inputWidth ==
mDebugWidth
)) {
47
memcpy(mDebugOutput, inputImage, mDebugHeight *
mDebugWidth
* 4);
54
mDebugOutput = new unsigned char[mDebugHeight *
mDebugWidth
* 4];
55
memset(mDebugOutput, 0, mDebugHeight *
mDebugWidth
* 4);
63
(column <
mDebugWidth
) && (row < mDebugHeight)) {
64
mDebugOutput[(row*
mDebugWidth
+ column) * 4] = color.r();
65
mDebugOutput[(row*
mDebugWidth
+ column) * 4+1] = color.g();
66
mDebugOutput[(row*
mDebugWidth
+ column) * 4+2] = color.b();
67
mDebugOutput[(row*
mDebugWidth
+ column) * 4+3] = 255
[
all
...]
/cts/apps/CtsVerifier/include/colorchecker/
imagetesthandler.h
35
int getDebugWidth() const { return
mDebugWidth
; }
53
int
mDebugWidth
;
Completed in 22 milliseconds