Home
last modified time | relevance | path

Searched full:image (Results 1 – 25 of 1017) sorted by relevance

12345678910>>...41

/device/sample/skins/WVGAMedDpi/
Dlayout4 image background_port.png
9 image background_land.png
24 image controls.png
28 image button.png
33 image button.png
38 image button.png
43 image arrow_up.png
48 image arrow_down.png
53 image arrow_left.png
58 image arrow_right.png
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/vulkan/
Dvk_format_map.json17 "the angle format ID), with two optional entries for Buffer and Image",
170 "image": "R16_FLOAT" string
173 "image": "R32_FLOAT" string
176 "image": "R16_FLOAT" string
179 "image": "R32_FLOAT" string
182 "image": "R16G16_FLOAT" string
185 "image": "R32G32_FLOAT" string
188 "image": "R8_UNORM" string
191 "image": "R8_UNORM" string
194 "image": "R8G8_UNORM" string
[all …]
/device/google/cuttlefish/tools/
Dcreate_base_image_gce.sh19 # to keep them from landing on the image.
33 # Now gather all of the *.deb files to copy them into the image
42 sudo mkdir /mnt/image
43 sudo mount /dev/sdb1 /mnt/image
44 cp "${debs[@]}" /mnt/image/tmp
45 sudo mount -t sysfs none /mnt/image/sys
46 sudo mount -t proc none /mnt/image/proc
47 sudo mount --bind /boot/efi /mnt/image/boot/efi
48 sudo mount --bind /dev/ /mnt/image/dev
49 sudo mount --bind /dev/pts /mnt/image/dev/pts
[all …]
Dcreate_base_image_hostlib.sh3 # Common code to build a host image on GCE
19 DEFINE_string dest_image "vsoc-host-scratch-${USER}" "Image to create" "o"
20 DEFINE_string dest_family "" "Image family to add the image to" "f"
22 "Project to use for the new image" "p"
24 "Name of the instance to launch with the new image" "l"
26 "Image familty to use as the base" "s"
28 "Project holding the base image" "m"
99 --image-family="${FLAGS_source_image_family}" \
100 --image-project="${FLAGS_source_image_project}" \
108 --image-family="${FLAGS_source_image_family}" \
[all …]
/device/generic/vulkan-cereal/protocols/vulkan/chapters/
Dresources.txt507 [open,refpage='VkImage',desc='Opaque handle to an image object',type='handles']
521 [open,refpage='vkCreateImage',desc='Create a new image object',type='protos']
528 * pname:device is the logical device that creates the image.
531 create the image.
535 image object is returned.
550 …eCreateInfo',desc='Structure specifying the parameters of a newly created image object',type='stru…
560 additional parameters of the image.
562 dimensionality of the image.
564 the image type.
566 data elements that will be contained in the image.
[all …]
Dclears.txt17 [open,refpage='vkCmdClearColorImage',desc='Clear regions of a color image',type='protos']
20 To clear one or more subranges of a color image, call:
26 * pname:image is the image to be cleared.
27 * pname:imageLayout specifies the current layout of the image subresource
35 contains the values the image subresource ranges will be cleared to (see
37 * pname:rangeCount is the number of image subresource range structures in
41 aspects to be cleared, as described in <<resources-image-views,Image
43 The pname:aspectMask of all image subresource ranges must: only include
52 * [[VUID-vkCmdClearColorImage-image-01993]]
53 The <<resources-image-format-features,format features>> of pname:image
[all …]
Dcopies.txt8 An application can: copy buffer and image data using several methods
11 portion of an image can: be copied to another image with
13 Image data can: also be copied to and from buffer memory using
15 Image data can: be blitted (with or without scaling and filtering) with
17 Multisampled images can: be resolved to a non-multisampled image with
31 * Regions must: not extend outside the bounds of the buffer or image
33 the dimension of the image level rounded up to a complete compressed
35 * Source image subresources must: be in either the
38 Destination image subresources must: be in the
44 As a consequence, if an image subresource is used as both source and
[all …]
Dsparsemem.txt41 ** No specific mapping of image region to memory offset is defined, i.e.
50 ** A sparse image created using ename:VK_IMAGE_CREATE_SPARSE_BINDING_BIT
61 ** Images have a prescribed sparse image block layout, allowing specific
62 rectangular regions of the image to be bound to specific offsets in
106 ** A sparse image created using ename:VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT
142 === Sparse Buffer and Fully-Resident Image Block Size
168 regions of the image called sparse image blocks to be bound to specific
170 This allows the application to manage residency at either image subresource
171 or sparse image block granularity.
172 Each image subresource (outside of the <<sparsememory-miptail,mip tail>>)
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/
DImage_unittest.cpp7 // Image_unittest.cpp : Unittets of the Image and ImageSibling classes.
12 #include "libANGLE/Image.h"
37 // Create a texture and an EGL image that uses the texture as its source in TEST()
47 egl::Image *image = in TEST() local
48 new egl::Image(&mockEGLFactory, nullptr, EGL_GL_TEXTURE_2D, texture, egl::AttributeMap()); in TEST()
49 rx::MockImageImpl *imageImpl = static_cast<rx::MockImageImpl *>(image->getImplementation()); in TEST()
50 image->addRef(); in TEST()
52 // Verify that the image does not add a ref to its source so that the source may still be in TEST()
55 EXPECT_EQ(1u, image->getRefCount()); in TEST()
57 // Create a renderbuffer and set it as a target of the EGL image in TEST()
[all …]
DImage.h7 // Image.h: Defines the egl::Image class representing the EGLimage object.
28 // Used for distinguishing dirty bit messages from gl::Texture/rx::TexureImpl/gl::Image.
35 class Image; variable
39 // explicit, and also ensures that an image sibling can determine if it's been initialized or not,
56 // Set the image target of this sibling
57 void setTargetImage(const gl::Context *context, egl::Image *imageTarget);
59 // Orphan all EGL image sources and targets
65 friend class Image;
67 // Called from Image only to add a new source image
68 void addImageSource(egl::Image *imageSource);
[all …]
DImage.cpp7 // Image.cpp: Implements the egl::Image class representing the EGLimage object.
9 #include "libANGLE/Image.h"
61 // while it is attached to an EGL image. in ~ImageSibling()
67 void ImageSibling::setTargetImage(const gl::Context *context, egl::Image *imageTarget) in setTargetImage()
86 for (Image *sourceImage : mSourcesOf) in orphanImages()
96 void ImageSibling::addImageSource(egl::Image *imageSource) in addImageSource()
102 void ImageSibling::removeImageSource(egl::Image *imageSource) in removeImageSource()
139 for (Image *source : mSourcesOf) in notifySiblings()
246 Image::Image(rx::EGLImplFactory *factory, in Image() function in egl::Image
261 void Image::onDestroy(const Display *display) in onDestroy()
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/tests/gl_tests/
DImageTest.cpp200 // Create an image from the source texture in createEGLImage2DTextureSource()
203 EGLImageKHR image = in createEGLImage2DTextureSource() local
210 *outSourceImage = image; in createEGLImage2DTextureSource()
242 // Create an image from the source texture in createEGLImageCubemapTextureSource()
245 EGLImageKHR image = in createEGLImageCubemapTextureSource() local
252 *outSourceImage = image; in createEGLImageCubemapTextureSource()
280 // Create an image from the source texture in createEGLImage3DTextureSource()
283 EGLImageKHR image = in createEGLImage3DTextureSource() local
290 *outSourceImage = image; in createEGLImage3DTextureSource()
321 // Create an image from the source renderbuffer in createEGLImageRenderbufferSource()
[all …]
/device/generic/vulkan-cereal/protocols/vulkan/appendices/
DVK_NV_dedicated_allocation.txt11 or image resource, which on some devices can significantly improve the
21 allocation: a new structure that flags whether am image/buffer will have a
22 dedicated allocation, and a structure indicating the image or buffer that an
59 // Create an image with
77 VkImage image;
82 &image);
87 image,
90 // Allocate memory with VkDedicatedAllocationMemoryAllocateInfoNV::image
91 // pointing to the image we are allocating the memory for
97 image, // image
[all …]
DVK_KHR_dedicated_allocation.txt31 depend on dedicated allocations on implementations that associate image or
35 and memory allocation: a new structure that flags whether an image/buffer
36 should have a dedicated allocation, and a structure indicating the image or
78 // Create an image with a dedicated allocation based on the
83 // Image creation parameters
86 VkImage image;
91 &image);
109 image
118 // Allocate memory with VkMemoryDedicatedAllocateInfoKHR::image
119 // pointing to the image we are allocating the memory for
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/compiler/translator/
DImageFunctionHLSL.cpp6 // ImageFunctionHLSL: Class for writing implementations of ESSL image functions into HLSL output.
26 TextureGroupSuffix(imageFunction.image, imageFunction.imageInternalFormat)); in GetImageReference()
38 RWTextureGroupSuffix(imageFunction.image, imageFunction.imageInternalFormat)); in GetImageReference()
56 switch (imageFunction.image) in OutputImageFunctionArgumentList()
80 switch (imageFunction.image) in OutputImageFunctionArgumentList()
113 if (IsImage3D(imageFunction.image) || IsImage2DArray(imageFunction.image) || in OutputImageSizeFunctionBody()
114 IsImageCube(imageFunction.image)) in OutputImageSizeFunctionBody()
120 else if (IsImage2D(imageFunction.image)) in OutputImageSizeFunctionBody()
144 if (IsImage3D(imageFunction.image) || IsImage2DArray(imageFunction.image) || in OutputImageLoadFunctionBody()
145 IsImageCube(imageFunction.image)) in OutputImageLoadFunctionBody()
[all …]
/device/generic/vulkan-cereal/protocols/vulkan/xml/Retired/
DrefDesc.py12 refDesc['vkAcquireNextImageKHR'] = 'Retrieve the index of the next available presentable image'
19 refDesc['vkBindImageMemory'] = 'Bind device memory to an image object'
30 refDesc['vkCmdBlitImage'] = 'Copy regions of an image, potentially performing format conversion,'
32 refDesc['vkCmdClearColorImage'] = 'Clear regions of a color image'
33 refDesc['vkCmdClearDepthStencilImage'] = 'Fill regions of a combined depth-stencil image'
34 refDesc['vkCmdCopyBufferToImage'] = 'Copy data from a buffer into an image'
36 refDesc['vkCmdCopyImageToBuffer'] = 'Copy image data into a buffer'
54 refDesc['vkCmdResolveImage'] = 'Resolve regions of an image'
83 refDesc['vkCreateImage'] = 'Create a new image object'
84 refDesc['vkCreateImageView'] = 'Create an image view from an existing image'
[all …]
/device/generic/vulkan-cereal/protocols/vulkan/
DrefDesc.py22 refDesc['vkAcquireNextImageKHR'] = 'Retrieve the index of the next available presentable image'
29 refDesc['vkBindImageMemory'] = 'Bind device memory to an image object'
40 refDesc['vkCmdBlitImage'] = 'Copy regions of an image, potentially performing format conversion,'
42 refDesc['vkCmdClearColorImage'] = 'Clear regions of a color image'
43 refDesc['vkCmdClearDepthStencilImage'] = 'Fill regions of a combined depth-stencil image'
44 refDesc['vkCmdCopyBufferToImage'] = 'Copy data from a buffer into an image'
46 refDesc['vkCmdCopyImageToBuffer'] = 'Copy image data into a buffer'
64 refDesc['vkCmdResolveImage'] = 'Resolve regions of an image'
93 refDesc['vkCreateImage'] = 'Create a new image object'
94 refDesc['vkCreateImageView'] = 'Create an image view from an existing image'
[all …]
/device/google/sunfish/
Dinit.qcom.modem_links.sh36 cd /firmware/image
38 # Get the list of files in /firmware/image
74 ln -s /firmware/image/athwlan.bin /system/etc/firmware/athwlan.bin
75 ln -s /firmware/image/fakeboar.bin /system/etc/firmware/fakeBoardData_AR6004.bin
76 ln -s /firmware/image/otp.bin /system/etc/firmware/otp.bin
77 ln -s /firmware/image/utf.bin /system/etc/firmware/utf.bin
81 cd /firmware/image
86 ln -s /firmware/image/$imgfile /system/etc/firmware/$imgfile 2>/dev/null
92 log -p w -t PIL no modem image found;;
98 ln -s /firmware/image/$imgfile /system/etc/firmware/$imgfile 2>/dev/null
[all …]
/device/google/redbull/
Dinit.qcom.modem_links.sh36 cd /firmware/image
38 # Get the list of files in /firmware/image
74 ln -s /firmware/image/athwlan.bin /system/etc/firmware/athwlan.bin
75 ln -s /firmware/image/fakeboar.bin /system/etc/firmware/fakeBoardData_AR6004.bin
76 ln -s /firmware/image/otp.bin /system/etc/firmware/otp.bin
77 ln -s /firmware/image/utf.bin /system/etc/firmware/utf.bin
81 cd /firmware/image
86 ln -s /firmware/image/$imgfile /system/etc/firmware/$imgfile 2>/dev/null
92 log -p w -t PIL no modem image found;;
98 ln -s /firmware/image/$imgfile /system/etc/firmware/$imgfile 2>/dev/null
[all …]
/device/google/coral/
Dinit.qcom.modem_links.sh36 cd /firmware/image
38 # Get the list of files in /firmware/image
74 ln -s /firmware/image/athwlan.bin /system/etc/firmware/athwlan.bin
75 ln -s /firmware/image/fakeboar.bin /system/etc/firmware/fakeBoardData_AR6004.bin
76 ln -s /firmware/image/otp.bin /system/etc/firmware/otp.bin
77 ln -s /firmware/image/utf.bin /system/etc/firmware/utf.bin
81 cd /firmware/image
86 ln -s /firmware/image/$imgfile /system/etc/firmware/$imgfile 2>/dev/null
92 log -p w -t PIL no modem image found;;
98 ln -s /firmware/image/$imgfile /system/etc/firmware/$imgfile 2>/dev/null
[all …]
/device/generic/goldfish-opengl/system/GLESv2/
Dgl2.cpp63 EGLImage_t *image = (EGLImage_t*)img; in glEGLImageTargetTexture2DOES() local
64 GLeglImageOES hostImage = reinterpret_cast<GLeglImageOES>((intptr_t)image->host_egl_image); in glEGLImageTargetTexture2DOES()
66 if (image->target == EGL_NATIVE_BUFFER_ANDROID) { in glEGLImageTargetTexture2DOES()
68 android_native_buffer_t* native_buffer = image->native_buffer; in glEGLImageTargetTexture2DOES()
82 ctx->associateEGLImage(target, hostImage, image->width, image->height); in glEGLImageTargetTexture2DOES()
87 else if (image->target == EGL_GL_TEXTURE_2D_KHR) { in glEGLImageTargetTexture2DOES()
90 ctx->associateEGLImage(target, hostImage, image->width, image->height); in glEGLImageTargetTexture2DOES()
101 DBG("glEGLImageTargetRenderbufferStorageOES v2 image=%p\n", img); in glEGLImageTargetRenderbufferStorageOES()
103 EGLImage_t *image = (EGLImage_t*)img; in glEGLImageTargetRenderbufferStorageOES() local
104 GLeglImageOES hostImage = reinterpret_cast<GLeglImageOES>((intptr_t)image->host_egl_image); in glEGLImageTargetRenderbufferStorageOES()
[all …]
/device/generic/vulkan-cereal/protocols/vulkan/chapters/VK_GOOGLE_display_timing/
Dqueries.txt15 Stuttering occurs when the geometry for each presentable image isn't
16 accurately positioned for when that image will be displayed.
19 Sometimes the animation appears to freeze, when the same image is used for
23 their geometry for when the presentable image will be displayed to the user.
28 Applications also need to tell the presentation engine to display an image
79 the image present rate (IPR, aka frame rate).
80 The inverse of IPR, or the duration between each image present, is the image
95 It will therefore position the geometry of a new image 16.67ms later than
96 the previous image.
98 actually takes 20ms to render each new image.
[all …]
/device/generic/vulkan-cereal/protocols/vulkan/chapters/VK_KHR_swapchain/
Dwsi.txt20 One image (which can: be an array image for multiview/stereoscopic-3D
23 An application renders to the image, and then queues the image for
45 An application can: acquire use of a presentable image from the presentation
47 Use of a presentable image must: occur only after the image is returned by
50 This includes transitioning the image layout and rendering commands.
52 An application can: acquire use of a presentable image with
54 After acquiring a presentable image and before modifying it, the application
56 has finished reading from the image.
57 The application can: then transition the image's layout, queue rendering
59 Finally, the application presents the image with fname:vkQueuePresentKHR,
[all …]
/device/generic/vulkan-cereal/include/ETC1/
Detc1.h56 // Return the size of the encoded image data (does not include size of PKM header).
60 // Encode an entire image.
61 // pIn - pointer to the image data. Formatted such that
63 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
64 // pixelSize can be 2 or 3. 2 is an GL_UNSIGNED_SHORT_5_6_5 image, 3 is a GL_BYTE RGB image.
70 // Decode an entire image.
72 // pOut - pointer to the image data. Will be written such that
74 // large enough to store entire image.
75 // pixelSize can be 2 or 3. 2 is an GL_UNSIGNED_SHORT_5_6_5 image, 3 is a GL_BYTE RGB image.
94 // Read the image width from a PKM header
[all …]
/device/generic/goldfish-opengl/system/include/ETC1/
Detc1.h56 // Return the size of the encoded image data (does not include size of PKM header).
60 // Encode an entire image.
61 // pIn - pointer to the image data. Formatted such that
63 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
64 // pixelSize can be 2 or 3. 2 is an GL_UNSIGNED_SHORT_5_6_5 image, 3 is a GL_BYTE RGB image.
70 // Decode an entire image.
72 // pOut - pointer to the image data. Will be written such that
74 // large enough to store entire image.
75 // pixelSize can be 2 or 3. 2 is an GL_UNSIGNED_SHORT_5_6_5 image, 3 is a GL_BYTE RGB image.
94 // Read the image width from a PKM header
[all …]

12345678910>>...41