Lines Matching refs:pipelineDescriptor
320 auto pipelineDescriptor = [MTLRenderPipelineDescriptor new];
364 pipelineDescriptor.vertexFunction = vertexFunction;
365 pipelineDescriptor.fragmentFunction = fragmentFunction;
366 pipelineDescriptor.vertexDescriptor = create_vertex_descriptor(primProc);
367 pipelineDescriptor.colorAttachments[0] = create_color_attachment(this->config(), pipeline);
368 pipelineDescriptor.sampleCount = renderTarget->numSamples();
371 pipelineDescriptor.stencilAttachmentPixelFormat =
375 SkASSERT(pipelineDescriptor.vertexFunction);
376 SkASSERT(pipelineDescriptor.fragmentFunction);
377 SkASSERT(pipelineDescriptor.vertexDescriptor);
378 SkASSERT(pipelineDescriptor.colorAttachments[0]);
383 fGpu->device(), pipelineDescriptor, &timedout);
387 fGpu->device(), pipelineDescriptor, &timedout);
395 [fGpu->device() newRenderPipelineStateWithDescriptor: pipelineDescriptor
408 pipelineDescriptor.colorAttachments[0].pixelFormat,