Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:transformHint
(Results
1 - 14
of
14
) sorted by relevance
/foundation/graphic/graphic_surface/surface/src/
H
A
D
consumer_surface.cpp
540
GraphicTransformType
transformHint
= GraphicTransformType::GRAPHIC_ROTATE_BUTT;
in GetTransformHint()
local
541
if (producer_->GetTransformHint(
transformHint
) != GSERROR_OK) {
in GetTransformHint()
545
return
transformHint
;
in GetTransformHint()
548
GSError ConsumerSurface::SetTransformHint(GraphicTransformType
transformHint
)
in SetTransformHint()
argument
553
return producer_->SetTransformHint(
transformHint
);
in SetTransformHint()
H
A
D
buffer_queue_producer.cpp
743
GraphicTransformType
transformHint
= static_cast<GraphicTransformType>(arguments.ReadUint32());
in SetTransformHintRemote()
local
744
GSError sRet = SetTransformHint(
transformHint
);
in SetTransformHintRemote()
754
GraphicTransformType
transformHint
= GraphicTransformType::GRAPHIC_ROTATE_BUTT;
in GetTransformHintRemote()
local
755
auto ret = GetTransformHint(
transformHint
);
in GetTransformHintRemote()
763
if (!reply.WriteInt32(GSERROR_OK) || !reply.WriteUint32(static_cast<uint32_t>(
transformHint
))) {
in GetTransformHintRemote()
1194
GSError BufferQueueProducer::SetTransformHint(GraphicTransformType
transformHint
)
in SetTransformHint()
argument
1200
return bufferQueue_->SetTransformHint(
transformHint
);
in SetTransformHint()
1203
GSError BufferQueueProducer::GetTransformHint(GraphicTransformType &
transformHint
)
in GetTransformHint()
argument
1207
transformHint
= GraphicTransformType::GRAPHIC_ROTATE_BUTT;
in GetTransformHint()
1210
transformHint
in GetTransformHint()
[all...]
H
A
D
buffer_client_producer.cpp
740
GSError BufferClientProducer::GetTransformHint(GraphicTransformType &
transformHint
)
in GetTransformHint()
argument
745
GSError BufferClientProducer::SetTransformHint(GraphicTransformType
transformHint
)
in SetTransformHint()
argument
749
if (!arguments.WriteUint32(static_cast<uint32_t>(
transformHint
))) {
in SetTransformHint()
H
A
D
producer_surface.cpp
526
GSError ProducerSurface::SetTransformHint(GraphicTransformType
transformHint
)
531
GSError err = producer_->SetTransformHint(
transformHint
);
534
lastSetTransformHint_ =
transformHint
;
H
A
D
buffer_queue.cpp
1600
GSError BufferQueue::SetTransformHint(GraphicTransformType
transformHint
)
in SetTransformHint()
argument
1603
transformHint_ =
transformHint
;
in SetTransformHint()
/foundation/graphic/graphic_surface/surface/include/
H
A
D
buffer_client_producer.h
96
GSError GetTransformHint(GraphicTransformType &
transformHint
) override;
97
GSError SetTransformHint(GraphicTransformType
transformHint
) override;
H
A
D
buffer_queue_producer.h
108
GSError SetTransformHint(GraphicTransformType
transformHint
) override;
109
GSError GetTransformHint(GraphicTransformType &
transformHint
) override;
H
A
D
buffer_queue.h
179
GSError SetTransformHint(GraphicTransformType
transformHint
);
H
A
D
producer_surface.h
200
GSError SetTransformHint(GraphicTransformType
transformHint
) override;
H
A
D
consumer_surface.h
218
GSError SetTransformHint(GraphicTransformType
transformHint
) override;
/foundation/graphic/graphic_surface/interfaces/inner_api/surface/
H
A
D
ibuffer_producer.h
113
virtual GSError GetTransformHint(GraphicTransformType &
transformHint
) = 0;
114
virtual GSError SetTransformHint(GraphicTransformType
transformHint
) = 0;
H
A
D
surface.h
143
virtual GSError SetTransformHint(GraphicTransformType
transformHint
) = 0;
/foundation/graphic/graphic_2d/frameworks/vulkan_layers/swapchain_layer/
H
A
D
swapchain_layer.cpp
537
//Use to compare preTransform to
transformHint
640
OH_NativeBuffer_TransformType
transformHint
= NATIVEBUFFER_ROTATE_NONE;
in SetWindowTransform()
local
641
err = NativeWindowGetTransformHint(window, &
transformHint
);
in SetWindowTransform()
646
if (
transformHint
!= TranslateVulkanToNativeTransform(createInfo->preTransform)) {
in SetWindowTransform()
647
SWLOGE("The App Is Not Doing Pre-rotation,
transformHint
: %{public}d, preTransform(to native): %{public}d",
in SetWindowTransform()
648
transformHint
, TranslateVulkanToNativeTransform(createInfo->preTransform));
in SetWindowTransform()
1332
OH_NativeBuffer_TransformType
transformHint
= NATIVEBUFFER_ROTATE_NONE;
in GetPhysicalDeviceSurfaceCapabilitiesKHR()
local
1341
err = NativeWindowGetTransformHint(window, &
transformHint
);
in GetPhysicalDeviceSurfaceCapabilitiesKHR()
1357
capabilities->currentTransform = TranslateNativeToVulkanTransformHint(
transformHint
);
in GetPhysicalDeviceSurfaceCapabilitiesKHR()
/foundation/window/window_manager/wm/src/
H
A
D
window_session_impl.cpp
1063
uint32_t
transformHint
= (rotation + deviceRotation) % FULL_CIRCLE_DEGREE;
in UpdateViewportConfig()
local
1068
rotation, deviceRotation,
transformHint
, virtualPixelRatio_);
in UpdateViewportConfig()
1074
config.SetTransformHint(
transformHint
);
in UpdateViewportConfig()
Completed in 22 milliseconds