Home
last modified time | relevance | path

Searched refs:layer_id (Results 1 – 9 of 9) sorted by relevance

/frameworks/native/cmds/surfacereplayer/replayer/
DReplayer.h47 typedef int32_t layer_id; typedef
84 layer_id id, const PositionChange& pc);
86 layer_id id, const SizeChange& sc);
88 layer_id id, const AlphaChange& ac);
90 layer_id id, const LayerChange& lc);
92 layer_id id, const CropChange& cc);
94 layer_id id, const CornerRadiusChange& cc);
96 layer_id id, const MatrixChange& mc);
98 layer_id id, const OverrideScalingModeChange& osmc);
100 layer_id id, const TransparentRegionHintChange& trgc);
[all …]
DReplayer.cpp457 layer_id id, const PositionChange& pc) { in setPosition()
463 layer_id id, const SizeChange& sc) { in setSize()
469 layer_id id, const LayerChange& lc) { in setLayer()
475 layer_id id, const AlphaChange& ac) { in setAlpha()
481 layer_id id, const CropChange& cc) { in setCrop()
492 layer_id id, const CornerRadiusChange& cc) { in setCornerRadius()
499 layer_id id, const MatrixChange& mc) { in setMatrix()
506 layer_id id, const OverrideScalingModeChange& osmc) { in setOverrideScalingMode()
512 layer_id id, const TransparentRegionHintChange& trhc) { in setTransparentRegionHint()
525 layer_id id, const LayerStackChange& lsc) { in setLayerStack()
[all …]
/frameworks/native/opengl/libs/EGL/
DGLES_layers.md11 void* AndroidGLESLayer_Initialize(void* layer_id, PFNEGLGETNEXTLAYERPROCADDRESSPROC get_next_layer_…
14 …ze` is a new function that provides an identifier for the layer to use (layer_id) and an entrypoin…
17 void* gpa = get_next_layer_proc_address(layer_id, func);
140 void* layer_id, PFNEGLGETNEXTLAYERPROCADDRESSPROC get_next_layer_proc_address) {
159 void* layer_id, PFNEGLGETNEXTLAYERPROCADDRESSPROC get_next_layer_proc_address) {
160 return (void)glesLayer_InitializeLayer(layer_id, get_next_layer_proc_address);
201 void* layer_id, PFNEGLGETNEXTLAYERPROCADDRESSPROC get_next_layer_proc_address) {
206 funcMap[func] = get_next_layer_proc_address(layer_id, func);
223 void* layer_id, PFNEGLGETNEXTLAYERPROCADDRESSPROC get_next_layer_proc_address) {
224 return (void)glesLayer_InitializeLayer(layer_id, get_next_layer_proc_address);
Degl_layers.h44 const void* layer_id, PFNEGLGETNEXTLAYERPROCADDRESSPROC get_next_layer_proc_address);
Degl_layers.cpp73 const void* getNextLayerProcAddress(void* layer_id, const char* name) { in getNextLayerProcAddress() argument
76 auto next_layer_funcs = reinterpret_cast<FunctionTable*>(layer_id); in getNextLayerProcAddress()
/frameworks/native/cmds/surfacereplayer/replayer/trace_creator/
Dtrace_creator.py150 change.deferred_transaction.layer_id, \
261 layer_id = input("Enter layer_id: ")
264 return int(layer_id), int(frame_number)
/frameworks/native/cmds/surfacereplayer/proto/src/
Dtrace.proto110 required int32 layer_id = 1; field
/frameworks/native/services/vr/hardware_composer/impl/
Dvr_hwc.cpp108 uint64_t layer_id = layer_ids_++; in CreateLayer() local
109 layers_.push_back(HwcLayer(layer_id)); in CreateLayer()
/frameworks/native/services/surfaceflinger/tests/
DSurfaceInterceptor_test.cpp562 bool hasId(change.deferred_transaction().layer_id() == mBGLayerId); in deferredTransactionUpdateFound()