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:modifier_props
(Results
1 - 7
of
7
) sorted by relevance
/third_party/mesa3d/src/vulkan/wsi/
H
A
D
wsi_common_drm.c
309
if (info->
modifier_props
[i].drmFormatModifier == modifier)
in get_modifier_props()
310
return &info->
modifier_props
[i];
in get_modifier_props()
354
info->
modifier_props
=
in wsi_configure_native_image()
356
sizeof(*info->
modifier_props
) *
in wsi_configure_native_image()
359
if (info->
modifier_props
== NULL)
in wsi_configure_native_image()
362
modifier_props_list.pDrmFormatModifierProperties = info->
modifier_props
;
in wsi_configure_native_image()
374
.drmFormatModifier = info->
modifier_props
[i].drmFormatModifier,
in wsi_configure_native_image()
406
info->
modifier_props
[info->modifier_prop_count++] = info->
modifier_props
[i];
in wsi_configure_native_image()
H
A
D
wsi_common_private.h
53
struct VkDrmFormatModifierPropertiesEXT *
modifier_props
;
member
H
A
D
wsi_common.c
521
vk_free(&chain->alloc, info->
modifier_props
);
in wsi_destroy_image_info()
/third_party/mesa3d/src/gallium/drivers/zink/
H
A
D
zink_surface.c
153
for (unsigned i = 0; i < screen->
modifier_props
[templ->format].drmFormatModifierCount; i++) {
in create_surface()
154
if (res->obj->modifier == screen->
modifier_props
[templ->format].pDrmFormatModifierProperties[i].drmFormatModifier)
in create_surface()
155
feats &= screen->
modifier_props
[templ->format].pDrmFormatModifierProperties[i].drmFormatModifierTilingFeatures;
in create_surface()
H
A
D
zink_screen.c
1746
screen->
modifier_props
[i].drmFormatModifierCount = mod_props.drmFormatModifierCount;
in populate_format_props()
1747
screen->
modifier_props
[i].pDrmFormatModifierProperties = ralloc_array(screen, VkDrmFormatModifierPropertiesEXT, mod_props.drmFormatModifierCount);
in populate_format_props()
1750
screen->
modifier_props
[i].pDrmFormatModifierProperties[j] = mod_props.pDrmFormatModifierProperties[j];
in populate_format_props()
1876
*count = screen->
modifier_props
[format].drmFormatModifierCount;
in zink_query_dmabuf_modifiers()
1878
modifiers[i] = screen->
modifier_props
[format].pDrmFormatModifierProperties[i].drmFormatModifier;
in zink_query_dmabuf_modifiers()
1885
for (unsigned i = 0; i < screen->
modifier_props
[format].drmFormatModifierCount; i++)
in zink_is_dmabuf_modifier_supported()
1886
if (screen->
modifier_props
[format].pDrmFormatModifierProperties[i].drmFormatModifier == modifier)
in zink_is_dmabuf_modifier_supported()
1895
for (unsigned i = 0; i < screen->
modifier_props
[format].drmFormatModifierCount; i++)
in zink_get_dmabuf_modifier_planes()
1896
if (screen->
modifier_props
[format].pDrmFormatModifierProperties[i].drmFormatModifier == modifier)
in zink_get_dmabuf_modifier_planes()
1897
return screen->
modifier_props
[forma
in zink_get_dmabuf_modifier_planes()
[all...]
H
A
D
zink_resource.c
360
const struct zink_modifier_prop *prop = &screen->
modifier_props
[templ->format];
in get_image_usage()
649
modifiers_count = screen->
modifier_props
[templ->format].drmFormatModifierCount;
in resource_object_create()
651
mods[j] = screen->
modifier_props
[templ->format].pDrmFormatModifierProperties[j].drmFormatModifier;
in resource_object_create()
783
for (unsigned i = 0; i < screen->
modifier_props
[templ->format].drmFormatModifierCount; i++)
in resource_object_create()
784
feats &= screen->
modifier_props
[templ->format].pDrmFormatModifierProperties[i].drmFormatModifierTilingFeatures;
in resource_object_create()
1238
res->modifiers_count = screen->
modifier_props
[res->base.b.format].drmFormatModifierCount;
in add_resource_bind()
1240
for (unsigned i = 0; i < screen->
modifier_props
[res->base.b.format].drmFormatModifierCount; i++)
in add_resource_bind()
1241
res->modifiers[i] = screen->
modifier_props
[res->base.b.format].pDrmFormatModifierProperties[i].drmFormatModifier;
in add_resource_bind()
H
A
D
zink_screen.h
202
struct zink_modifier_prop
modifier_props
[PIPE_FORMAT_COUNT];
member
Completed in 12 milliseconds