Lines Matching refs:rtProxy
219 if (const GrRenderTargetProxy* rtProxy = dst->asRenderTargetProxy()) {
223 if (rtProxy->wrapsVkSecondaryCB()) {
227 rtProxy->supportsVkInputAttachment()) {
230 dstSampleCnt = rtProxy->numSamples();
233 if (const GrRenderTargetProxy* rtProxy = src->asRenderTargetProxy()) {
237 if (rtProxy->wrapsVkSecondaryCB()) {
241 rtProxy->supportsVkInputAttachment()) {
244 srcSampleCnt = rtProxy->numSamples();
1680 bool GrVkCaps::onSupportsDynamicMSAA(const GrRenderTargetProxy* rtProxy) const {
1681 // We must be able to use the rtProxy as an input attachment to load into the discardable msaa
1682 // attachment. Also the rtProxy should have a sample count of 1 so that it can be used as a
1685 rtProxy->supportsVkInputAttachment() &&
1686 rtProxy->numSamples() == 1;