HomeSort by relevance Sort by last modified time
    Searched refs:Attachment (Results 76 - 100 of 200) sorted by null

1 2 34 5 6 7 8

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
fbobject.c 185 * If \p attachment is GL_DEPTH_STENCIL_ATTACHMENT, return a pointer to
186 * the depth buffer attachment point.
190 GLenum attachment)
196 switch (attachment) {
217 i = attachment - GL_COLOR_ATTACHMENT0_EXT;
222 return &fb->Attachment[BUFFER_COLOR0 + i];
228 return &fb->Attachment[BUFFER_DEPTH];
230 return &fb->Attachment[BUFFER_STENCIL];
243 GLenum attachment)
247 switch (attachment) {
    [all...]
accum.c 136 accRb = ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer;
194 ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer;
252 ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer;
345 struct gl_renderbuffer *accRb = fb->Attachment[BUFFER_ACCUM].Renderbuffer;
457 if (!ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer) {
clear.c 250 const struct gl_renderbuffer_attachment *att = ctx->DrawBuffer->Attachment;
332 else if (ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer && !ctx->RasterDiscard) {
495 else if (ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer && !ctx->RasterDiscard) {
598 if (ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer)
600 if (ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer)
  /external/mesa3d/src/mesa/main/
fbobject.c 185 * If \p attachment is GL_DEPTH_STENCIL_ATTACHMENT, return a pointer to
186 * the depth buffer attachment point.
190 GLenum attachment)
196 switch (attachment) {
217 i = attachment - GL_COLOR_ATTACHMENT0_EXT;
222 return &fb->Attachment[BUFFER_COLOR0 + i];
228 return &fb->Attachment[BUFFER_DEPTH];
230 return &fb->Attachment[BUFFER_STENCIL];
243 GLenum attachment)
247 switch (attachment) {
    [all...]
accum.c 136 accRb = ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer;
194 ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer;
252 ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer;
345 struct gl_renderbuffer *accRb = fb->Attachment[BUFFER_ACCUM].Renderbuffer;
457 if (!ctx->DrawBuffer->Attachment[BUFFER_ACCUM].Renderbuffer) {
clear.c 250 const struct gl_renderbuffer_attachment *att = ctx->DrawBuffer->Attachment;
332 else if (ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer && !ctx->RasterDiscard) {
495 else if (ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer && !ctx->RasterDiscard) {
598 if (ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer)
600 if (ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer)
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java 195 Attachment.initAttachment();
652 // Boolean, no attachment = 0, attachment = 1
    [all...]
  /packages/apps/Email/src/com/android/email/service/
Pop3Service.java 45 import com.android.emailcommon.provider.EmailContent.Attachment;
81 Attachment att = Attachment.restoreAttachmentWithId(mContext, attachmentId);
185 // 2) We are able to download the rest of the message/attachment when the
193 // If message is incomplete, create a "fake" attachment
389 Cursor c = resolver.query(Attachment.CONTENT_URI, Attachment.CONTENT_PROJECTION,
397 Attachment att = new Attachment();
402 resolver.update(ContentUris.withAppendedId(Attachment.CONTENT_URI, att.mId)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageAttachmentBar.java 45 import com.android.mail.providers.Attachment;
56 * View for a single attachment in conversation view. Shows download status and allows launching
57 * intents to act on an attachment.
63 private Attachment mAttachment;
115 * Render or update an attachment's view. This happens immediately upon instantiation, and
119 public void render(Attachment attachment, Account account, ConversationMessage message,
124 final Attachment prevAttachment = mAttachment;
125 mAttachment = attachment;
136 mSaveClicked = !attachment.isDownloading() ? false : mSaveClicked
    [all...]
MessageCursor.java 26 import com.android.mail.providers.Attachment;
177 for (Attachment a : m.getAttachments()) {
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 108 draw_irb = intel_renderbuffer(fb->Attachment[BUFFER_DEPTH].Renderbuffer);
110 intel_renderbuffer(read_fb->Attachment[BUFFER_DEPTH].Renderbuffer);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv20_state_fb.c 106 if (fb->Attachment[BUFFER_DEPTH].Renderbuffer) {
108 fb->Attachment[BUFFER_DEPTH].Renderbuffer)->surface;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tex_copy.c 68 flip_y = ctx->ReadBuffer->Attachment[BUFFER_DEPTH].Type == GL_NONE;
71 flip_y = ctx->ReadBuffer->Attachment[BUFFER_COLOR0].Type == GL_NONE;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_framebuffer.c 145 strb = st_renderbuffer(fb->Attachment[BUFFER_DEPTH].Renderbuffer);
154 strb = st_renderbuffer(fb->Attachment[BUFFER_STENCIL].Renderbuffer);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 108 draw_irb = intel_renderbuffer(fb->Attachment[BUFFER_DEPTH].Renderbuffer);
110 intel_renderbuffer(read_fb->Attachment[BUFFER_DEPTH].Renderbuffer);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv20_state_fb.c 106 if (fb->Attachment[BUFFER_DEPTH].Renderbuffer) {
108 fb->Attachment[BUFFER_DEPTH].Renderbuffer)->surface;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tex_copy.c 68 flip_y = ctx->ReadBuffer->Attachment[BUFFER_DEPTH].Type == GL_NONE;
71 flip_y = ctx->ReadBuffer->Attachment[BUFFER_COLOR0].Type == GL_NONE;
  /external/mesa3d/src/mesa/state_tracker/
st_atom_framebuffer.c 145 strb = st_renderbuffer(fb->Attachment[BUFFER_DEPTH].Renderbuffer);
154 strb = st_renderbuffer(fb->Attachment[BUFFER_STENCIL].Renderbuffer);
  /external/chromium_org/sync/api/attachments/
attachment_service_impl.cc 9 #include "sync/api/attachments/attachment.h"
31 // Attachment was just retrieved. Add it to retrieved attachments.
32 void AddAttachment(const Attachment& attachment);
34 // Both reading from local store and downloading attachment failed.
42 // If all attachment requests completed then post callback to consumer with
73 const Attachment& attachment) {
75 DCHECK(retrieved_attachments_->find(attachment.GetId()) ==
78 std::make_pair(attachment.GetId(), attachment))
    [all...]
  /packages/apps/Email/src/com/android/email/
AttachmentInfo.java 20 import com.android.emailcommon.provider.EmailContent.Attachment;
38 * Encapsulates commonly used attachment information related to suitability for viewing and saving,
39 * based on the attachment's filename and mimetype.
59 /** Attachment not denied */
61 /** Attachment suspected of being malware */
63 /** Attachment too large; must download over wi-fi */
65 /** No receiving intent to handle attachment type */
82 /** Whether or not this attachment can be viewed */
84 /** Whether or not this attachment can be saved */
86 /** Whether or not this attachment can be installed [only true for APKs] *
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AbstractConversationWebViewClient.java 38 import com.android.mail.providers.Attachment;
77 * Translates Content ID urls (CID urls) into provider queries for the associated attachment.
78 * With the attachment in hand, it's trivial to open a stream to the file containing the content
79 * of the attachment.
83 * @return a response if a stream to the attachment file can be created from the CID URL;
107 // query for the attachment using its cid
114 // create the attachment from the cursor, if one was found
115 final Attachment target;
120 target = new Attachment(c);
125 // try to return a response that includes a stream to the attachment dat
    [all...]
ThumbnailLoadTask.java 32 import com.android.mail.providers.Attachment;
52 final Attachment attachment, final Attachment prevAttachment) {
55 if (attachment == null || width == 0 || height == 0
56 || !ImageUtils.isImageMimeType(attachment.getContentType())) {
61 final Uri thumbnailUri = attachment.thumbnailUri;
62 final Uri contentUri = attachment.contentUri;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cdonts.h 67 typedef struct Attachment Attachment;
100 typedef struct Attachment Attachment;
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 37 import com.android.emailcommon.provider.EmailContent.Attachment;
648 public static boolean attachmentExists(Context context, Attachment attachment) {
649 if (attachment == null) {
651 } else if (attachment.mContentBytes != null) {
654 final String cachedFile = attachment.getCachedFileUri();
672 final String contentUri = attachment.getContentUri();
708 Attachment[] atts = Attachment.restoreAttachmentsWithMessageId(context, messageId);
709 for (Attachment att: atts)
    [all...]
  /external/deqp/modules/glshared/
glsFboUtil.cpp 271 static void attachAttachment (const Attachment& att, GLenum attPoint,
287 DE_ASSERT(!"Impossible attachment type");
290 GLenum attachmentType (const Attachment& att)
297 DE_ASSERT(!"Impossible attachment type");
309 DE_ASSERT(!"Impossible attachment type");
313 static void checkAttachmentCompleteness (Checker& cctx, const Attachment& attachment,
317 // GLES2 4.4.5 / GLES3 4.4.4, "Framebuffer attachment completeness"
320 dynamic_cast<const TextureAttachment*>(&attachment))
423 const Attachment& att = *it->second
    [all...]

Completed in 916 milliseconds

1 2 34 5 6 7 8