Home
last modified time | relevance | path

Searched refs:attachmentInfo (Results 1 – 6 of 6) sorted by relevance

/external/skia/experimental/SkV8Example/
DSkV8Example.cpp72 SkOSWindow::AttachmentInfo attachmentInfo; in windowSizeChanged() local
74 SkOSWindow::kNativeGL_BackEndType, 0, false, &attachmentInfo); in windowSizeChanged()
93 desc.fSampleCnt = attachmentInfo.fSampleCount; in windowSizeChanged()
94 desc.fStencilBits = attachmentInfo.fStencilBits; in windowSizeChanged()
/external/skia/src/views/
DSkWindow.cpp325 sk_sp<SkSurface> SkWindow::makeGpuBackedSurface(const AttachmentInfo& attachmentInfo, in makeGpuBackedSurface() argument
345 (attachmentInfo.fColorBits != 30) in makeGpuBackedSurface()
354 attachmentInfo.fSampleCount, in makeGpuBackedSurface()
355 attachmentInfo.fStencilBits, in makeGpuBackedSurface()
/external/skia/experimental/iOSSampleApp/
DSkSampleUIView.mm157 SampleWindow::AttachmentInfo attachmentInfo;
158 win->attach(fBackend, fMSAASampleCount, fDeepColor, &attachmentInfo);
159 fActualColorBits = SkTMax(attachmentInfo.fColorBits, 24);
160 fGpuSurface = win->makeGpuBackedSurface(attachmentInfo, fCurIntf, fCurContext);
/external/deqp/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassTests.cpp1336 const Attachment& attachmentInfo, in AttachmentResources() argument
1339 … (createAttachmentImage(vk, device, queueIndex, size, attachmentInfo.getFormat(), attachmentInfo.… in AttachmentResources()
1341 …ateImageAttachmentView(vk, device, *m_image, attachmentInfo.getFormat(), getImageAspectFlags(attac… in AttachmentResources()
1343 const tcu::TextureFormat format = mapVkFormat(attachmentInfo.getFormat()); in AttachmentResources()
1349 …m_depthInputAttachmentView = createImageAttachmentView(vk, device, *m_image, attachmentInfo.getFo… in AttachmentResources()
1350 …m_stencilInputAttachmentView = createImageAttachmentView(vk, device, *m_image, attachmentInfo.getF… in AttachmentResources()
1361 const tcu::TextureFormat depthFormat = getDepthCopyFormat(attachmentInfo.getFormat()); in AttachmentResources()
1362 const tcu::TextureFormat stencilFormat = getStencilCopyFormat(attachmentInfo.getFormat()); in AttachmentResources()
1946 …const Attachment attachmentInfo = attachmentInfos[renderInfo.getInputAttachmentIndex(inputAttach… in SubpassRenderer() local
1948 const tcu::TextureFormat format = mapVkFormat(attachmentInfo.getFormat()); in SubpassRenderer()
[all …]
/external/skia/include/views/
DSkWindow.h84 sk_sp<SkSurface> makeGpuBackedSurface(const AttachmentInfo& attachmentInfo,
/external/skia/samplecode/
DSampleApp.cpp249 AttachmentInfo attachmentInfo; in setUpBackend() local
251 backendOptions.fDeepColor, &attachmentInfo); in setUpBackend()
259 fActualColorBits = SkTMax(attachmentInfo.fColorBits, 24); in setUpBackend()
389 AttachmentInfo attachmentInfo; in windowSizeChanged() local
390 win->attach(fBackend, fMSAASampleCount, fDeepColor, &attachmentInfo); in windowSizeChanged()
391 fActualColorBits = SkTMax(attachmentInfo.fColorBits, 24); in windowSizeChanged()
392 fGpuSurface = win->makeGpuBackedSurface(attachmentInfo, fCurIntf, fCurContext); in windowSizeChanged()