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:ageLimit
(Results
1 - 9
of
9
) sorted by relevance
/foundation/graphic/graphic_3d/lume/LumeRender/src/device/
H
A
D
gpu_resource_cache.cpp
203
const auto
ageLimit
= (frameCounter_ < minAge) ? 0 : (frameCounter_ - minAge);
in DestroyOldImages()
local
206
if (imgRef.frameUseIndex <
ageLimit
) {
in DestroyOldImages()
H
A
D
shader_manager.cpp
736
const auto
ageLimit
= (frameCount < minAge) ? 0 : (frameCount - minAge);
in HandlePendingAllocations()
local
737
auto CompareForErase = [](const auto
ageLimit
, auto& vec) {
in HandlePendingAllocations()
739
if (iter->frameIndex <
ageLimit
) {
in HandlePendingAllocations()
746
CompareForErase(
ageLimit
, deferredDestructions_.shaderModules);
in HandlePendingAllocations()
747
CompareForErase(
ageLimit
, deferredDestructions_.computePrograms);
in HandlePendingAllocations()
748
CompareForErase(
ageLimit
, deferredDestructions_.shaderPrograms);
in HandlePendingAllocations()
/foundation/graphic/graphic_3d/lume/LumeRender/src/nodecontext/
H
A
D
node_context_pso_manager.cpp
111
const auto
ageLimit
= (frameCount < minAge) ? 0 : (frameCount - minAge);
in BeginBackendFrame()
local
115
if (iter->frameIndex <
ageLimit
) {
in BeginBackendFrame()
125
if (iter->frameIndex <
ageLimit
) {
in BeginBackendFrame()
H
A
D
render_node_graph_manager.cpp
196
const uint64_t
ageLimit
= (device_.GetFrameCount() < minAge) ? 0 : (device_.GetFrameCount() - minAge);
239
[
ageLimit
](const auto& destructionQueue) { return destructionQueue.frameIndex >=
ageLimit
; });
246
[
ageLimit
](const auto& destructionQueue) { return destructionQueue.frameIndex >=
ageLimit
; });
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H
A
D
node_context_pool_manager_vk.cpp
364
const auto
ageLimit
= (frameCount < minAge) ? 0 : (frameCount - minAge);
in BeginBackendFrame()
local
370
if (iter->second.frameUseIndex <
ageLimit
) {
in BeginBackendFrame()
383
if (iter->second.frameUseIndex <
ageLimit
) {
in BeginBackendFrame()
H
A
D
node_context_descriptor_set_manager_vk.cpp
213
const auto
ageLimit
= (device_.GetFrameCount() < minAge) ? 0 : (device_.GetFrameCount() - minAge);
in BeginFrame()
local
216
[
ageLimit
](auto const& pd) { return pd.frameIndex >=
ageLimit
; });
in BeginFrame()
/foundation/graphic/graphic_3d/lume/LumeRender/src/util/
H
A
D
render_frame_util.cpp
259
const auto
ageLimit
= (frameCount < minAge) ? 0 : (frameCount - minAge);
in ProcessFrameSignalDeferredDestroy()
local
262
if (iter->frameUseIndex <
ageLimit
) {
in ProcessFrameSignalDeferredDestroy()
/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H
A
D
node_context_pool_manager_gles.cpp
720
const auto
ageLimit
= (frameCount < minAge) ? 0 : (frameCount - minAge);
in BeginBackendFrame()
local
725
if (useIndex <
ageLimit
&& (!ref.fbos.empty())) {
in BeginBackendFrame()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/
H
A
D
render_system.cpp
2431
const uint64_t
ageLimit
= (frameIndex_ < 2) ? 0 : (frameIndex_ - 2);
2433
if (iter->second.enableAutoDestroy && iter->second.lastFrameIndex <
ageLimit
) {
Completed in 14 milliseconds