/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Overlay.h | 7 // Defines the Overlay class that handles overlay widgets. 53 angle::PackedEnumMap<WidgetId, std::unique_ptr<overlay::Widget>> mOverlayWidgets; 67 overlay::Text *getTextWidget(WidgetId id) const in getTextWidget() 69 return getWidgetAs<overlay::Text, WidgetType::Text>(id); in getTextWidget() 71 overlay::Count *getCountWidget(WidgetId id) const in getCountWidget() 73 return getWidgetAs<overlay::Count, WidgetType::Count>(id); in getCountWidget() 75 overlay::PerSecond *getPerSecondWidget(WidgetId id) const in getPerSecondWidget() 77 return getWidgetAs<overlay::PerSecond, WidgetType::PerSecond>(id); in getPerSecondWidget() 79 overlay::RunningGraph *getRunningGraphWidget(WidgetId id) const in getRunningGraphWidget() 81 return getWidgetAs<overlay in getRunningGraphWidget() [all...] |
H A D | OverlayWidgets.cpp | 9 // could respect them too, if they implement the overlay. 122 dstFontSize[0] = overlay::kFontGlyphWidths[srcFontSize]; 123 dstFontSize[1] = overlay::kFontGlyphHeights[srcFontSize]; 175 using AppendWidgetDataFunc = void (*)(const overlay::Widget *widget, 185 static void Append##WIDGET_ID(const overlay::Widget *widget, const gl::Extents &imageExtent, \ 198 static std::ostream &OutputPerSecond(std::ostream &out, const overlay::PerSecond *perSecond); 200 static std::ostream &OutputText(std::ostream &out, const overlay::Text *text); 202 static std::ostream &OutputCount(std::ostream &out, const overlay::Count *count); 204 static void AppendTextCommon(const overlay::Widget *widget, 211 static void AppendRunningGraphCommon(const overlay 505 namespace overlay global() namespace [all...] |
H A D | Overlay.cpp | 46 [](const std::unique_ptr<overlay::Widget> &widget) { return widget.get() != nullptr; })); in init() 68 "ANGLE_OVERLAY", "debug.angle.overlay", ":"); in enableOverlayWidgetsFromEnvironment() 91 for (const std::unique_ptr<overlay::Widget> &widget : mState.mOverlayWidgets) in onSwap() 95 overlay::PerSecond *perSecond = in onSwap() 96 reinterpret_cast<overlay::PerSecond *>(widget.get()); in onSwap()
|
H A D | Overlay_font_autogen.h | 2 // Generated by gen_overlay_fonts.py using overlay/DejaVuSansMono-Bold.ttf. 9 // Autogenerated overlay font data. 15 namespace overlay namespace 28 } // namespace overlay
|
H A D | OverlayWidgets.h | 48 namespace overlay namespace 60 // For text items, size of the font. This is a value in [0, overlay::kFontCount) which 64 // The area covered by the item, predetermined by the overlay class. Negative values 166 // If overlay is disabled, all the above classes would be replaced with Mock, turning them into 181 } // namespace overlay
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | OverlayVk.cpp | 56 // If not all operations used in the shaders are supported, disable the overlay. in init() 97 gl::overlay::kFontCount * gl::overlay::kFontImageWidth * gl::overlay::kFontImageHeight; in createFont() 114 // Don't use robust resource init for overlay widgets. in createFont() 120 VkExtent3D{gl::overlay::kFontImageWidth, gl::overlay::kFontImageHeight, 1}, in createFont() 123 gl::LevelIndex(0), 1, gl::overlay::kFontCount, useRobustInit, false)); in createFont() 133 access.onImageTransferWrite(gl::LevelIndex(0), 1, 0, gl::overlay::kFontCount, in createFont() 139 copy.bufferRowLength = gl::overlay in createFont() [all...] |
H A D | SurfaceVk.cpp | 1108 // We need storage image for compute writes (debug overlay output). in createSwapChain() 1468 // swapchain image. MSAA resolve and overlay will insert another renderpass which disqualifies in present() 2054 const gl::OverlayType *overlay = contextVk->getOverlay(); in updateOverlay() local 2056 // If overlay is disabled, nothing to do. in updateOverlay() 2057 if (!overlay->isEnabled()) in updateOverlay() 2069 overlay->getTextWidget(gl::WidgetId::VulkanLastValidationMessage) in updateOverlay() 2071 overlay->getCountWidget(gl::WidgetId::VulkanValidationMessageCount) in updateOverlay() 2080 const gl::OverlayType *overlay = contextVk->getOverlay(); in overlayHasEnabledWidget() local 2081 OverlayVk *overlayVk = vk::GetImpl(overlay); in overlayHasEnabledWidget() 2087 const gl::OverlayType *overlay in drawOverlay() local [all...] |
H A D | ContextVk.cpp | 2214 const gl::OverlayType *overlay = mState.getOverlay(); in updateOverlayOnPresent() local 2215 ASSERT(overlay->isEnabled()); in updateOverlayOnPresent() 2219 // Update overlay if active. in updateOverlayOnPresent() 2222 overlay->getRunningGraphWidget(gl::WidgetId::VulkanRenderPassCount); in updateOverlayOnPresent() 2229 overlay->getRunningGraphWidget(gl::WidgetId::VulkanWriteDescriptorSetCount); in updateOverlayOnPresent() 2238 overlay->getRunningGraphWidget(gl::WidgetId::VulkanDescriptorSetAllocations); in updateOverlayOnPresent() 2245 overlay->getRunningGraphWidget(gl::WidgetId::VulkanShaderBufferDSHitRate); in updateOverlayOnPresent() 2261 overlay->getRunningGraphWidget(gl::WidgetId::VulkanDynamicBufferAllocations); in updateOverlayOnPresent() 2268 const gl::OverlayType *overlay = mState.getOverlay(); in addOverlayUsedBuffersCount() local 2269 if (!overlay in addOverlayUsedBuffersCount() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_maskedmerge.c | 64 AVFrame *base, *overlay, *mask; member 73 AVFrame *overlay = td->overlay; in filter_slice() local 93 overlay->data[p] + slice_start * overlay->linesize[p], in filter_slice() 96 base->linesize[p], overlay->linesize[p], in filter_slice() 110 AVFrame *out, *base, *overlay, *mask; in process_frame() local 115 (ret = ff_framesync_get_frame(&s->fs, 1, &overlay, 0)) < 0 || in process_frame() 131 td.overlay = overlay; in process_frame() 217 AVFilterLink *overlay = ctx->inputs[1]; config_output() local [all...] |
H A D | vf_overlay_vulkan.c | 243 AVVkFrame *overlay = (AVVkFrame *)overlay_f->data[0]; in process_frames() local 263 &s->overlay_images[i].imageView, overlay->img[i], in process_frames() 298 .oldLayout = overlay->layout[i], in process_frames() 302 .image = overlay->img[i], in process_frames() 329 overlay->layout[i] = bar[1].newLayout; in process_frames() 330 overlay->access[i] = bar[1].dstAccessMask; in process_frames() 471 .name = "overlay",
|
H A D | blend_modes.c | 127 fn(overlay, (A < HALF) ? MULTIPLY(2, A, B) : SCREEN(2, A, B))
|
/third_party/ltp/testcases/kernel/security/integrity/ima/tests/ |
H A D | evm_overlay.sh | 29 TST_DEVICE="overlay" 32 TST_FS_TYPE="overlay" 48 tst_res TINFO "overwrite file in overlay" 50 EXPECT_PASS echo overlay \> $merged/$file 57 tst_res TINFO "append file in overlay" 59 EXPECT_PASS echo overlay \>\> $merged/$file 66 tst_res TINFO "create a new file in overlay" 67 EXPECT_PASS echo overlay \> $merged/$file
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-secure-streams-policy.h | 396 lws_ss_policy_parse_begin(struct lws_context *context, int overlay); 405 lws_ss_policy_overlay(struct lws_context *context, const char *overlay);
|
/third_party/ffmpeg/tests/fate/ |
H A D | filter-video.mak | 204 FATE_FILTER_OVERLAY-$(call FILTERDEMDEC, SCALE OVERLAY, IMAGE2, PGMYUV) += fate-filter-overlay 205 fate-filter-overlay: CMD = framecrc -c:v pgmyuv -i $(SRC) -c:v pgmyuv -i $(SRC) -filter_complex_script $(FILTERGRAPH) 214 FATE_FILTER_OVERLAY_SAMPLES-$(call FILTERDEMDEC, SCALE OVERLAY, MATROSKA, H264 DVDSUB) += fate-filter-overlay-dvdsub-2397 215 fate-filter-overlay-dvdsub-2397: CMD = framecrc -auto_conversion_filters -flags bitexact -i $(TARGET_SAMPLES)/filter/242_4.mkv -filter_complex_script $(FILTERGRAPH) -c:a copy 228 fate-filter-overlay_yuv420_yuva420: FILTER = "scale,format=yuva420p[over];color=black:128x128,format=yuv420p[main];[main][over]overlay=format=yuv420" 229 fate-filter-overlay_yuv422_yuva422: FILTER = "scale,format=yuva422p[over];color=black:128x128,format=yuv422p[main];[main][over]overlay=format=yuv422" 230 fate-filter-overlay_yuv444_yuva444: FILTER = "scale,format=yuva444p[over];color=black:128x128,format=yuv444p[main];[main][over]overlay=format=yuv444" 231 fate-filter-overlay_rgb_rgba: FILTER = "format=rgba[over];color=black:128x128,format=rgb24[main];[main][over]overlay=format=rgb" 232 fate-filter-overlay_gbrp_gbrap: FILTER = "scale,format=gbrap[over];color=black:128x128,format=gbrp[main];[main][over]overlay=format=gbrp" 234 fate-filter-overlay_yuva420_yuva420: FILTER = "scale,format=yuva420p[over];color=black:128x128,format=yuva420p[main];[main][over]overlay [all...] |
/third_party/mesa3d/src/gallium/drivers/svga/include/ |
H A D | svga_overlay.h | 29 * Definitions for video-overlay support. 86 * Struct definitions for the video overlay commands built on 92 uint32 overlay; member
|
/third_party/NuttX/include/nuttx/video/ |
H A D | fb.h | 185 /* Hardware overlay acceleration *******************************************/ 249 # define FBIOGET_OVERLAYINFO _FBIOC(0x0009) /* Get video overlay info */ 252 # define FBIO_SELECT_OVERLAY _FBIOC(0x000a) /* Select overlay */ 267 # define FBIOSET_AREA _FBIOC(0x000f) /* Set active overlay area 337 /* This structure describes one overlay. */ 345 uint8_t overlay; /* Overlay number */ member 351 struct fb_area_s sarea; /* Selected area within the overlay */ 356 /* This structure describes an overlay area within a whole overlay */ 360 uint8_t overlay; /* Numbe member [all...] |
/third_party/libwebsockets/lib/secure-streams/ |
H A D | policy-json.c | 1139 lws_ss_policy_parse_begin(struct lws_context *context, int overlay) in lws_ss_policy_parse_begin() argument 1150 if (overlay) in lws_ss_policy_parse_begin() 1274 lws_ss_policy_overlay(struct lws_context *context, const char *overlay) in lws_ss_policy_overlay() argument 1277 return lws_ss_policy_parse(context, (const uint8_t *)overlay, in lws_ss_policy_overlay() 1278 strlen(overlay)); in lws_ss_policy_overlay()
|
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_overlay.asm | 2 ;* x86-optimized functions for overlay filter
|
/third_party/skia/src/core/ |
H A D | SkBlendMode.cpp | 106 case SkBlendMode::kOverlay: stage = SkRasterPipeline::overlay; break; in SkBlendMode_AppendStages()
|
H A D | SkRasterPipeline.h | 74 M(exclusion) M(hardlight) M(lighten) M(overlay) M(softlight) \
|
/third_party/mesa3d/include/GL/ |
H A D | glxext.h | 959 typedef Status ( *PFNGLXGETTRANSPARENTINDEXSUNPROC) (Display *dpy, Window overlay, Window underlay, unsigned long *pTransparentIndex); 961 Status glXGetTransparentIndexSUN (Display *dpy, Window overlay, Window underlay, unsigned long *pTransparentIndex);
|
/third_party/openGLES/api/GL/ |
H A D | glxext.h | 944 typedef Status ( *PFNGLXGETTRANSPARENTINDEXSUNPROC) (Display *dpy, Window overlay, Window underlay, unsigned long *pTransparentIndex); 946 Status glXGetTransparentIndexSUN (Display *dpy, Window overlay, Window underlay, unsigned long *pTransparentIndex);
|
/third_party/skia/third_party/externals/swiftshader/include/GL/ |
H A D | glxext.h | 943 typedef Status ( *PFNGLXGETTRANSPARENTINDEXSUNPROC) (Display *dpy, Window overlay, Window underlay, long *pTransparentIndex); 945 Status glXGetTransparentIndexSUN (Display *dpy, Window overlay, Window underlay, long *pTransparentIndex);
|
/third_party/skia/third_party/externals/opengl-registry/api/GL/ |
H A D | glxext.h | 943 typedef Status ( *PFNGLXGETTRANSPARENTINDEXSUNPROC) (Display *dpy, Window overlay, Window underlay, long *pTransparentIndex); 945 Status glXGetTransparentIndexSUN (Display *dpy, Window overlay, Window underlay, long *pTransparentIndex);
|
/third_party/NuttX/drivers/video/ |
H A D | fb.c | 537 case FBIO_SELECT_OVERLAY: /* Select video overlay */ in fb_ioctl() 552 case FBIOGET_OVERLAYINFO: /* Get video overlay info */ in fb_ioctl() 564 ret = fb->vtable->getoverlayinfo(fb->vtable, oinfo.overlay, &oinfo); in fb_ioctl() 576 case FBIOSET_TRANSP: /* Set video overlay transparency */ in fb_ioctl() 592 case FBIOSET_CHROMAKEY: /* Set video overlay chroma key */ in fb_ioctl() 608 case FBIOSET_COLOR: /* Set video overlay color */ in fb_ioctl() 624 case FBIOSET_BLANK: /* Blank or unblank video overlay */ in fb_ioctl() 640 case FBIOSET_AREA: /* Set active video overlay area */ in fb_ioctl() 799 /* Initialize first overlay but do not select */ in fb_register() 809 /* Clear the overlay memor in fb_register() [all...] |