OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:halfPixel
(Results
1 - 2
of
2
) sorted by null
/external/deqp/framework/referencerenderer/
rrRasterizer.cpp
135
const deUint64
halfPixel
= 1ll << (RASTERIZER_SUBPIXEL_BITS-1);
136
return ((a.x() & (pixelSize-1)) ==
halfPixel
&&
137
(a.y() & (pixelSize-1)) ==
halfPixel
);
240
const deInt64
halfPixel
= 1ll << (RASTERIZER_SUBPIXEL_BITS-1);
259
const deInt64 broadRejectDistance = 2 *
halfPixel
;
286
{ diamondCenter + tcu::Vector<deInt64,2>(0, -
halfPixel
), diamondCenter + tcu::Vector<deInt64,2>(-
halfPixel
, 0), false },
287
{ diamondCenter + tcu::Vector<deInt64,2>(-
halfPixel
, 0), diamondCenter + tcu::Vector<deInt64,2>(0,
halfPixel
), false },
288
{ diamondCenter + tcu::Vector<deInt64,2>(0,
halfPixel
), diamondCenter + tcu::Vector<deInt64,2>(halfPixel, 0), true }
[
all
...]
/external/deqp/modules/gles31/functional/
es31fPrimitiveBoundingBoxTests.cpp
810
const float
halfPixel
= 0.5f;
821
pixelBox.x() = (int)deFloatCeil(vertexBox.x()+
halfPixel
);
822
pixelBox.y() = (int)deFloatCeil(vertexBox.y()+
halfPixel
);
823
pixelBox.z() = (int)deFloatFloor(vertexBox.z()-
halfPixel
);
824
pixelBox.w() = (int)deFloatFloor(vertexBox.w()-
halfPixel
);
828
pixelBox.x() = (int)deFloatFloor(vertexBox.x()-
halfPixel
);
829
pixelBox.y() = (int)deFloatFloor(vertexBox.y()-
halfPixel
);
830
pixelBox.z() = (int)deFloatCeil(vertexBox.z()+
halfPixel
);
831
pixelBox.w() = (int)deFloatCeil(vertexBox.w()+
halfPixel
);
[
all
...]
Completed in 188 milliseconds