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:formatProperties
(Results
1 - 6
of
6
) sorted by relevance
/foundation/graphic/graphic_3d/lume/LumeRender/src/node/
H
A
D
render_node_create_gpu_images.cpp
133
const FormatProperties
formatProperties
= gpuResourceMgr.GetFormatProperties(desc.format);
in CheckFormat()
local
135
?
formatProperties
.linearTilingFeatures
in CheckFormat()
136
:
formatProperties
.optimalTilingFeatures;
in CheckFormat()
H
A
D
render_staging.cpp
200
const FormatProperties
formatProperties
= gpuResourceMgr.GetFormatProperties(imageDesc.format);
in CopyBuffersToImages()
local
201
if ((
formatProperties
.optimalTilingFeatures & MIP_MAP_TILING_FEATURES) == MIP_MAP_TILING_FEATURES) {
in CopyBuffersToImages()
215
if ((
formatProperties
.optimalTilingFeatures & MIP_MAP_TILING_FEATURES) != MIP_MAP_TILING_FEATURES) {
in CopyBuffersToImages()
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H
A
D
gpu_image_vk.cpp
53
VkFormatProperties
formatProperties
;
in ValidateFormat()
local
56
&
formatProperties
); // pFormatProperties
in ValidateFormat()
57
const VkFormatFeatureFlags optimalTilingFeatureFlags =
formatProperties
.optimalTilingFeatures;
in ValidateFormat()
H
A
D
device_vk.cpp
450
VkFormatProperties
formatProperties
;
in CheckValidDepthFormats()
local
454
&
formatProperties
); // pFormatProperties
in CheckValidDepthFormats()
455
const VkFormatFeatureFlags optimalTilingFeatureFlags =
formatProperties
.optimalTilingFeatures;
in CheckValidDepthFormats()
573
VkFormatProperties
formatProperties
;
in FillDeviceFormatSupport()
local
576
&
formatProperties
); // pFormatProperties
in FillDeviceFormatSupport()
578
(FormatFeatureFlags)
formatProperties
.linearTilingFeatures,
in FillDeviceFormatSupport()
579
(FormatFeatureFlags)
formatProperties
.optimalTilingFeatures,
in FillDeviceFormatSupport()
580
(FormatFeatureFlags)
formatProperties
.bufferFeatures,
in FillDeviceFormatSupport()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/render/node/
H
A
D
render_node_default_camera_controller.cpp
77
const auto
formatProperties
= gpuResourceMgr.GetFormatProperties(format);
in GetValidColorFormat()
local
78
if (((
formatProperties
.optimalTilingFeatures & CORE_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT) == 0) ||
in GetValidColorFormat()
79
((
formatProperties
.optimalTilingFeatures & CORE_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) != 0)) {
in GetValidColorFormat()
91
const auto
formatProperties
= gpuResourceMgr.GetFormatProperties(format);
in GetValidDepthFormat()
local
92
if ((
formatProperties
.optimalTilingFeatures & CORE_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT) == 0) {
in GetValidDepthFormat()
H
A
D
render_node_default_shadow_render_slot.cpp
86
const auto
formatProperties
= gpuResourceMgr.GetFormatProperties(format);
in GetColorBufferDesc()
local
87
if ((
formatProperties
.optimalTilingFeatures & CORE_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT) == 0) {
in GetColorBufferDesc()
Completed in 11 milliseconds