HomeSort by relevance Sort by last modified time
    Searched refs:numAttachments (Results 1 - 25 of 339) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/gpu/vk/
GrVkFramebuffer.cpp 25 int numAttachments = 1;
27 attachments[numAttachments++] = stencilAttachment->imageView();
36 createInfo.attachmentCount = numAttachments;
GrVkRenderPass.cpp 55 uint32_t numAttachments = fAttachmentsDescriptor.fAttachmentCount;
57 SkTArray<VkAttachmentDescription> attachments(numAttachments);
58 attachments.reset(numAttachments);
59 memset(attachments.begin(), 0, numAttachments * sizeof(VkAttachmentDescription));
121 SkASSERT(numAttachments == currentAttachment);
129 createInfo.attachmentCount = numAttachments;
GrVkCommandBuffer.cpp 188 int numAttachments,
194 SkASSERT(numAttachments > 0);
197 for (int i = 0; i < numAttachments; ++i) {
206 numAttachments,
    [all...]
GrVkCommandBuffer.h 87 int numAttachments,
  /external/swiftshader/third_party/PowerVR_SDK/Shell/API/KEGL/
PVRShellAPI.h 79 typedef void (GL_APIENTRY * PFNGLDISCARDFRAMEBUFFEREXT)(GLenum target, GLsizei numAttachments, const GLenum *attachments);
PVRShellAPI.cpp 797 const GLint numAttachments=3;
798 GLenum attachments[numAttachments];
  /external/mesa3d/src/mesa/main/
fbobject.h 276 _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments,
282 GLsizei numAttachments,
288 _mesa_InvalidateFramebuffer(GLenum target, GLsizei numAttachments,
293 GLsizei numAttachments,
297 _mesa_DiscardFramebufferEXT(GLenum target, GLsizei numAttachments,
fbobject.c     [all...]
  /external/deqp/framework/opengl/
gluStrUtil.cpp 121 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments)
123 return detail::EnumPointerFmt(attachments, (deUint32)numAttachments, getInvalidateAttachmentName);
gluStrUtil.hpp 92 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments);
  /packages/apps/UnifiedEmail/src/com/android/mail/print/
PrintUtils.java 257 final int numAttachments = message.getAttachmentCount(false /* includeInline */);
260 if (numAttachments == 0) {
269 if (numAttachments > 1) {
272 R.plurals.num_attachments, numAttachments, numAttachments))
  /external/deqp/framework/opengl/simplereference/
sglrContextWrapper.cpp 364 void ContextWrapper::glInvalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height)
366 m_curCtx->invalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, height);
369 void ContextWrapper::glInvalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments)
371 m_curCtx->invalidateFramebuffer(target, numAttachments, attachments);
sglrGLContext.cpp 618 void GLContext::invalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height)
624 << glu::getFramebufferTargetStr(target) << ", " << numAttachments << ", "
625 << glu::getInvalidateAttachmentStr(attachments, numAttachments) << ", "
629 m_context.getFunctions().invalidateSubFramebuffer(target, numAttachments, attachments, x+drawOffset.x(), y+drawOffset.y(), width, height);
632 void GLContext::invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments)
634 m_wrapper->glInvalidateFramebuffer(target, numAttachments, attachments);
sglrContext.hpp 139 virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height) = DE_NULL;
140 virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments) = DE_NULL;
sglrGLContext.hpp 151 virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height);
152 virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments);
sglrContextWrapper.hpp 293 void glInvalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments);
294 void glInvalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height);
  /packages/apps/Email/tests/src/com/android/email/
LegacyConversionsTests.java 225 * @param numAttachments how many attachments to add
229 private Message prepareLegacyMessageWithAttachments(int numAttachments,
231 BodyPart[] attachmentParts = new BodyPart[numAttachments];
232 for (int i = 0; i < numAttachments; ++i) {
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Message.java 665 int numAttachments = 0;
671 numAttachments++;
674 return numAttachments;
  /frameworks/base/opengl/java/android/opengl/
GLES30.java     [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES30.spec 106 void glInvalidateFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments )
107 void glInvalidateSubFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height )
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 567 const int numAttachments = (int)m_fboSpec.size();
569 vector<deUint32> drawBuffers (numAttachments);
570 vector<AttachmentData> attachments (numAttachments);
573 for (int ndx = 0; ndx < numAttachments; ndx++)
820 for (int ndx = 0; ndx < numAttachments; ndx++)
874 for (int attachNdx = 0; attachNdx < numAttachments; attachNdx++)
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
PVRTgles2Ext.h 88 typedef void (GL_APIENTRY * PFNGLDISCARDFRAMEBUFFEREXT)(GLenum target, GLsizei numAttachments, const GLenum *attachments);
  /external/deqp/external/vulkancts/modules/vulkan/
vktDrawUtil.cpp 527 deUint32 numAttachments;
532 numAttachments = (deUint32)(attachmentBindInfos.size());
538 numAttachments, // uint32_t attachmentCount;
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java     [all...]
  /development/ndk/platforms/android-9/include/GLES2/
gl2ext.h 620 GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments);
622 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
    [all...]

Completed in 288 milliseconds

1 2 3 4 5 6 7 8 91011>>