Lines Matching defs:FragmentOperationState
234 struct FragmentOperationState struct
238 bool scissorTestEnabled;
239 WindowRectangle scissorRectangle;
241 bool stencilTestEnabled;
242 StencilState stencilStates[2]; //!< Indexed with FACETYPE_FRONT and FACETYPE_BACK.
244 bool depthTestEnabled;
245 TestFunc depthFunc;
246 bool depthMask;
248 bool depthBoundsTestEnabled;
249 float minDepthBound;
250 float maxDepthBound;
252 BlendMode blendMode;
255 BlendState blendRGBState;
256 BlendState blendAState;
257 tcu::Vec4 blendColor; //!< Components should be in range [0, 1].
259 BlendEquationAdvanced blendEquationAdvaced;
261 bool sRGBEnabled;
263 bool depthClampEnabled;
265 bool polygonOffsetEnabled;
266 float polygonOffsetFactor;
267 float polygonOffsetUnits;
269 tcu::BVec4 colorMask;
273 int numStencilBits;
275 FragmentOperationState(void) in FragmentOperationState() function