Home
last modified time | relevance | path

Searched refs:attachments (Results 1 – 25 of 106) sorted by relevance

12345

/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_common_context.c344 unsigned int attachments[10]; in radeon_update_renderbuffers() local
377 attachments[i++] = __DRI_BUFFER_FRONT_LEFT; in radeon_update_renderbuffers()
378 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]); in radeon_update_renderbuffers()
383 attachments[i++] = __DRI_BUFFER_BACK_LEFT; in radeon_update_renderbuffers()
384 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[1]); in radeon_update_renderbuffers()
391 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL; in radeon_update_renderbuffers()
392 attachments[i++] = radeon_bits_per_pixel(depth_rb); in radeon_update_renderbuffers()
394 attachments[i++] = __DRI_BUFFER_DEPTH; in radeon_update_renderbuffers()
395 attachments[i++] = radeon_bits_per_pixel(depth_rb); in radeon_update_renderbuffers()
397 attachments[i++] = __DRI_BUFFER_STENCIL; in radeon_update_renderbuffers()
[all …]
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_common_context.c344 unsigned int attachments[10]; in radeon_update_renderbuffers() local
377 attachments[i++] = __DRI_BUFFER_FRONT_LEFT; in radeon_update_renderbuffers()
378 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]); in radeon_update_renderbuffers()
383 attachments[i++] = __DRI_BUFFER_BACK_LEFT; in radeon_update_renderbuffers()
384 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[1]); in radeon_update_renderbuffers()
391 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL; in radeon_update_renderbuffers()
392 attachments[i++] = radeon_bits_per_pixel(depth_rb); in radeon_update_renderbuffers()
394 attachments[i++] = __DRI_BUFFER_DEPTH; in radeon_update_renderbuffers()
395 attachments[i++] = radeon_bits_per_pixel(depth_rb); in radeon_update_renderbuffers()
397 attachments[i++] = __DRI_BUFFER_STENCIL; in radeon_update_renderbuffers()
[all …]
/external/skia/src/gpu/vk/
DGrVkFramebuffer.cpp24 VkImageView attachments[3]; in Create() local
25 attachments[0] = colorAttachment->imageView(); in Create()
28 attachments[numAttachments++] = resolveAttachment->imageView(); in Create()
31 attachments[numAttachments++] = stencilAttachment->imageView(); in Create()
41 createInfo.pAttachments = attachments; in Create()
DGrVkRenderPass.cpp37 SkTArray<VkAttachmentDescription> attachments(numAttachments); in initSimple() local
38 attachments.reset(numAttachments); in initSimple()
39 memset(attachments.begin(), 0, numAttachments*sizeof(VkAttachmentDescription)); in initSimple()
58 setup_simple_vk_attachment_description(&attachments[currentAttachment], in initSimple()
77 setup_simple_vk_attachment_description(&attachments[currentAttachment], in initSimple()
92 setup_simple_vk_attachment_description(&attachments[currentAttachment], in initSimple()
117 createInfo.pAttachments = attachments.begin(); in initSimple()
DGrVkCommandBuffer.cpp300 const VkClearAttachment* attachments, in clearAttachments() argument
309 if (attachments[i].aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) { in clearAttachments()
312 SkASSERT(testIndex == attachments[i].colorAttachment); in clearAttachments()
318 attachments, in clearAttachments()
/external/deqp/doc/testspecs/GLES3/
Dfunctional.fbo.completeness.txt31 + Single attachments with all standard (and many extension) formats
32 + All combinations of color, depth and stencil attachments
34 + Differently sized attachments
35 + Multilayer attachments
36 + Compatibility of multisample attachments
54 images and attachments, the set of expected status values and the actual
72 * If there are no attachments, GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
80 Note that GLES3 requires the depth and stencil attachments to be the same
83 attachments.
94 attachments with different sizes. The glCheckFramebufferStatus call is
[all …]
/external/deqp/modules/gles3/functional/
Des3fFboInvalidateTests.cpp56 vector<deUint32> attachments; in getDefaultFBDiscardAttachments() local
59 attachments.push_back(GL_COLOR); in getDefaultFBDiscardAttachments()
62 attachments.push_back(GL_DEPTH); in getDefaultFBDiscardAttachments()
65 attachments.push_back(GL_STENCIL); in getDefaultFBDiscardAttachments()
67 return attachments; in getDefaultFBDiscardAttachments()
72 vector<deUint32> attachments; in getFBODiscardAttachments() local
75 attachments.push_back(GL_COLOR_ATTACHMENT0); in getFBODiscardAttachments()
79 attachments.push_back(GL_DEPTH_STENCIL_ATTACHMENT); in getFBODiscardAttachments()
81 attachments.push_back(GL_DEPTH_ATTACHMENT); in getFBODiscardAttachments()
83 attachments.push_back(GL_STENCIL_ATTACHMENT); in getFBODiscardAttachments()
[all …]
Des3fFragmentOutputTests.cpp570 vector<AttachmentData> attachments (numAttachments); in iterate() local
587 attachments[ndx].format = texFmt; in iterate()
588 attachments[ndx].readFormat = readFmt; in iterate()
589 attachments[ndx].referenceFormat = refFmt; in iterate()
590 attachments[ndx].renderedData.resize(readFmt.getPixelSize()*attachmentW*attachmentH); in iterate()
591 attachments[ndx].referenceData.resize(refFmt.getPixelSize()*attachmentW*attachmentH); in iterate()
639 DE_ASSERT(output.location+vecNdx < (int)attachments.size()); in iterate()
640 attachments[output.location+vecNdx].numWrittenChannels = numScalars; in iterate()
641 attachments[output.location+vecNdx].outPrecision = output.precision; in iterate()
650 if (de::inBounds(output.location+vecNdx, 0, (int)attachments.size())) in iterate()
[all …]
/external/deqp/doc/testspecs/GLES2/
Dfunctional.fbo.completeness.txt30 + Single attachments with all standard (and many extension) formats
31 + All combinations of color0, depth and stencil attachments
32 - And other color attachments if GL_NV_fbo_color_attachments is exposed
35 + Differently sized attachments
53 images and attachments, the set of expected status values and the actual
99 * If there are no attachments, GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT
106 color attachments are used in the tests.
111 Note that GLES2, unlike GLES3, allows the depth and stencil attachments to be
119 combination of attachments and formats such that the framebuffer checks as
131 attachments with different sizes. The glCheckFramebufferStatus call is
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vpc/
Dinternetgateway.py33 self.attachments = []
46 self.attachments = ResultSet([('item', InternetGatewayAttachment)])
47 return self.attachments
Dvpngateway.py53 self.attachments = []
64 self.attachments.append(att)
/external/mesa3d/src/egl/drivers/dri2/
Dplatform_wayland.c424 unsigned int *attachments, int count, in dri2_get_buffers_with_format() argument
456 assert(attachments[i] < __DRI_BUFFER_COUNT); in dri2_get_buffers_with_format()
459 dri2_prior_buffer_creation(dri2_surf, attachments[i]); in dri2_get_buffers_with_format()
461 if (dri2_surf->dri_buffers[attachments[i]] == NULL) { in dri2_get_buffers_with_format()
463 dri2_surf->dri_buffers[attachments[i]] = in dri2_get_buffers_with_format()
465 attachments[i], attachments[i+1], in dri2_get_buffers_with_format()
468 if (!dri2_surf->dri_buffers[attachments[i]]) in dri2_get_buffers_with_format()
471 if (attachments[i] == __DRI_BUFFER_BACK_LEFT) in dri2_get_buffers_with_format()
472 dri2_process_back_buffer(dri2_surf, attachments[i+1]); in dri2_get_buffers_with_format()
476 dri2_surf->dri_buffers[attachments[i]], in dri2_get_buffers_with_format()
[all …]
Dplatform_drm.c245 unsigned int *attachments, int count, in dri2_get_buffers_with_format() argument
253 assert(attachments[i] < __DRI_BUFFER_COUNT); in dri2_get_buffers_with_format()
256 switch (attachments[i]) { in dri2_get_buffers_with_format()
264 if (get_aux_bo(dri2_surf, attachments[i], attachments[i + 1], in dri2_get_buffers_with_format()
286 unsigned int *attachments, int count, in dri2_get_buffers() argument
301 attachments_with_format[2*i] = attachments[i]; in dri2_get_buffers()
Dplatform_android.c387 unsigned int *attachments, int count) in droid_get_buffers_parse_attachments() argument
398 switch (attachments[i]) { in droid_get_buffers_parse_attachments()
401 buf->attachment = attachments[i]; in droid_get_buffers_parse_attachments()
419 attachments[i], attachments[i + 1]); in droid_get_buffers_parse_attachments()
443 unsigned int *attachments, int count, in droid_get_buffers_with_format() argument
466 droid_get_buffers_parse_attachments(dri2_surf, attachments, count); in droid_get_buffers_with_format()
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnouveau_context.c251 unsigned int attachments[10]; in nouveau_update_renderbuffers() local
260 attachments[i++] = __DRI_BUFFER_FRONT_LEFT; in nouveau_update_renderbuffers()
262 attachments[i++] = __DRI_BUFFER_BACK_LEFT; in nouveau_update_renderbuffers()
264 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL; in nouveau_update_renderbuffers()
266 attachments[i++] = __DRI_BUFFER_DEPTH; in nouveau_update_renderbuffers()
268 attachments[i++] = __DRI_BUFFER_STENCIL; in nouveau_update_renderbuffers()
271 attachments, i, &count, in nouveau_update_renderbuffers()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
DMailer.java167 String aSubject, String aMessage, String[] attachments) { in sendMultiPartMessage() argument
214 for (int i = 0; i < attachments.length; i++) { in sendMultiPartMessage()
217 FileDataSource attachment = new FileDataSource(attachments[i]); in sendMultiPartMessage()
219 File attachmentFile=new File(attachments[i]); in sendMultiPartMessage()
/external/deqp/modules/gles31/functional/
Des31fNegativeBufferApiTests.cpp773 std::vector<deUint32> attachments (4); in draw_buffers() local
779 attachments[0] = (glw::GLenum) (GL_COLOR_ATTACHMENT0 + maxColorAttachments); in draw_buffers()
780 attachments[1] = GL_COLOR_ATTACHMENT0; in draw_buffers()
781 attachments[2] = GL_COLOR_ATTACHMENT1; in draw_buffers()
782 attachments[3] = GL_NONE; in draw_buffers()
802 ctx.glDrawBuffers (4, &attachments[0]); in draw_buffers()
822 ctx.glDrawBuffers (4, &attachments[0]); in draw_buffers()
1687 deUint32 attachments[3]; in invalidate_framebuffer() local
1693 attachments[0] = GL_COLOR_ATTACHMENT0; in invalidate_framebuffer()
1694 attachments[1] = GL_COLOR_ATTACHMENT0 + maxColorAttachments; in invalidate_framebuffer()
[all …]
/external/mesa3d/src/gbm/backends/dri/
Dgbm_driint.h62 unsigned int *attachments, int count,
67 unsigned int *attachments, int count,
/external/mesa3d/src/glx/
Ddri2.h70 unsigned int *attachments, int count,
80 unsigned int *attachments,
/external/mesa3d/src/mesa/drivers/dri/intel/
Dintel_context.c929 unsigned *attachments = calloc(2 * max_attachments, sizeof(unsigned)); in intel_query_dri2_buffers() local
940 attachments[i++] = __DRI_BUFFER_FRONT_LEFT; in intel_query_dri2_buffers()
941 attachments[i++] = intel_bits_per_pixel(front_rb); in intel_query_dri2_buffers()
945 attachments[i++] = __DRI_BUFFER_BACK_LEFT; in intel_query_dri2_buffers()
946 attachments[i++] = intel_bits_per_pixel(back_rb); in intel_query_dri2_buffers()
954 attachments, i / 2, in intel_query_dri2_buffers()
957 free(attachments); in intel_query_dri2_buffers()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_context.c929 unsigned *attachments = calloc(2 * max_attachments, sizeof(unsigned)); in intel_query_dri2_buffers() local
940 attachments[i++] = __DRI_BUFFER_FRONT_LEFT; in intel_query_dri2_buffers()
941 attachments[i++] = intel_bits_per_pixel(front_rb); in intel_query_dri2_buffers()
945 attachments[i++] = __DRI_BUFFER_BACK_LEFT; in intel_query_dri2_buffers()
946 attachments[i++] = intel_bits_per_pixel(back_rb); in intel_query_dri2_buffers()
954 attachments, i / 2, in intel_query_dri2_buffers()
957 free(attachments); in intel_query_dri2_buffers()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_context.c929 unsigned *attachments = calloc(2 * max_attachments, sizeof(unsigned)); in intel_query_dri2_buffers() local
940 attachments[i++] = __DRI_BUFFER_FRONT_LEFT; in intel_query_dri2_buffers()
941 attachments[i++] = intel_bits_per_pixel(front_rb); in intel_query_dri2_buffers()
945 attachments[i++] = __DRI_BUFFER_BACK_LEFT; in intel_query_dri2_buffers()
946 attachments[i++] = intel_bits_per_pixel(back_rb); in intel_query_dri2_buffers()
954 attachments, i / 2, in intel_query_dri2_buffers()
957 free(attachments); in intel_query_dri2_buffers()
/external/deqp/external/vulkancts/modules/vulkan/
DvktRenderPassTests.cpp573 RenderPass (const vector<Attachment>& attachments, in RenderPass() argument
576 : m_attachments (attachments) in RenderPass()
664 const vector<Attachment>& attachments = renderPass.getAttachments(); in logRenderPassInfo() local
666 for (size_t attachmentNdx = 0; attachmentNdx < attachments.size(); attachmentNdx++) in logRenderPassInfo()
669 const Attachment& attachment = attachments[attachmentNdx]; in logRenderPassInfo()
1044 vector<VkAttachmentDescription> attachments; in createRenderPass() local
1051attachments.push_back(createAttachmentDescription(renderPassInfo.getAttachments()[attachmentNdx])); in createRenderPass()
1065 (deUint32)attachments.size(), in createRenderPass()
1066 (attachments.empty() ? DE_NULL : &attachments[0]), in createRenderPass()
1081 const vector<VkImageView>& attachments) in createFramebuffer() argument
[all …]
/external/webrtc/webrtc/modules/video_coding/codecs/h264/
Dh264_video_toolbox_encoder.cc173 CFArrayRef attachments = in VTCompressionOutputCallback() local
175 if (attachments != nullptr && CFArrayGetCount(attachments)) { in VTCompressionOutputCallback()
177 static_cast<CFDictionaryRef>(CFArrayGetValueAtIndex(attachments, 0)); in VTCompressionOutputCallback()
/external/mesa3d/src/gallium/state_trackers/dri/drm/
Ddri2.c92 unsigned attachments[10]; in dri2_drawable_get_buffers() local
102 attachments[num_attachments++] = __DRI_BUFFER_FRONT_LEFT; in dri2_drawable_get_buffers()
175 attachments[num_attachments++] = att; in dri2_drawable_get_buffers()
177 attachments[num_attachments++] = depth; in dri2_drawable_get_buffers()
186 attachments, num_attachments, in dri2_drawable_get_buffers()
192 attachments, num_attachments, in dri2_drawable_get_buffers()

12345