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:GpuSemaphore
(Results
1 - 10
of
10
) sorted by relevance
/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H
A
D
gpu_semaphore.h
26
class
GpuSemaphore
{
class
28
GpuSemaphore
() = default;
29
virtual ~
GpuSemaphore
() = default;
31
GpuSemaphore
(const
GpuSemaphore
&) = delete;
32
GpuSemaphore
& operator=(const
GpuSemaphore
&) = delete;
H
A
D
device.h
58
class
GpuSemaphore
;
237
virtual BASE_NS::unique_ptr<
GpuSemaphore
> CreateGpuSemaphore() = 0;
238
virtual BASE_NS::unique_ptr<
GpuSemaphore
> CreateGpuSemaphoreView(const uint64_t handle) = 0;
/foundation/graphic/graphic_3d/lume/LumeRender/src/util/
H
A
D
render_frame_util.h
41
BASE_NS::array_view<BASE_NS::unique_ptr<
GpuSemaphore
>> GetGpuSemaphores();
93
BASE_NS::vector<BASE_NS::unique_ptr<
GpuSemaphore
>> gpuSemaphores;
107
BASE_NS::unique_ptr<
GpuSemaphore
> gpuSemaphore;
H
A
D
render_frame_util.cpp
415
array_view<unique_ptr<
GpuSemaphore
>> RenderFrameUtil::GetGpuSemaphores()
in GetGpuSemaphores()
/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H
A
D
gpu_semaphore_gles.h
33
class GpuSemaphoreGles final : public
GpuSemaphore
{
H
A
D
device_gles.h
49
class
GpuSemaphore
;
166
BASE_NS::unique_ptr<
GpuSemaphore
> CreateGpuSemaphore() override;
167
BASE_NS::unique_ptr<
GpuSemaphore
> CreateGpuSemaphoreView(const uint64_t handle) override;
H
A
D
device_gles.cpp
2163
unique_ptr<
GpuSemaphore
> DeviceGLES::CreateGpuSemaphore()
2168
unique_ptr<
GpuSemaphore
> DeviceGLES::CreateGpuSemaphoreView(const uint64_t handle)
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H
A
D
gpu_semaphore_vk.h
33
class GpuSemaphoreVk final : public
GpuSemaphore
{
H
A
D
device_vk.h
41
class
GpuSemaphore
;
175
BASE_NS::unique_ptr<
GpuSemaphore
> CreateGpuSemaphore() override;
176
BASE_NS::unique_ptr<
GpuSemaphore
> CreateGpuSemaphoreView(const uint64_t handle) override;
H
A
D
device_vk.cpp
1337
unique_ptr<
GpuSemaphore
> DeviceVk::CreateGpuSemaphore()
in CreateGpuSemaphore()
1342
unique_ptr<
GpuSemaphore
> DeviceVk::CreateGpuSemaphoreView(const uint64_t handle)
in CreateGpuSemaphoreView()
Completed in 8 milliseconds