Lines Matching refs:destFormat
479 switch(state.destFormat) in write()
970 UNSUPPORTED("Blitter destination format %d", (int)state.destFormat); in write()
1063 switch(state.destFormat) in write()
1115 switch(state.destFormat) in write()
1293 UNSUPPORTED("Blitter destination format %d", (int)state.destFormat); in write()
1303 !state.destFormat.isUnnormalizedInteger()) in ApplyScaleAndClamp()
1324 scale = state.destFormat.getScale(); in ApplyScaleAndClamp()
1327 bool dstSRGB = state.destFormat.isSRGBformat(); in ApplyScaleAndClamp()
1341 if(state.sourceFormat.isFloatFormat() && !state.destFormat.isFloatFormat()) in ApplyScaleAndClamp()
1345 value = Max(value, Float4(state.destFormat.isUnsignedComponent(0) ? 0.0f : -scale.x, in ApplyScaleAndClamp()
1346 state.destFormat.isUnsignedComponent(1) ? 0.0f : -scale.y, in ApplyScaleAndClamp()
1347 state.destFormat.isUnsignedComponent(2) ? 0.0f : -scale.z, in ApplyScaleAndClamp()
1348 state.destFormat.isUnsignedComponent(3) ? 0.0f : -scale.w)); in ApplyScaleAndClamp()
1406 bool intDst = state.destFormat.isUnnormalizedInteger(); in generate()
1409 int dstBytes = state.destFormat.bytes(); in generate()
1890 ASSERT(state.sourceFormat == state.destFormat); in generateCornerUpdate()