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:root_sig_desc
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/d3d12/
H
A
D
d3d12_root_signature.cpp
195
D3D12_VERSIONED_ROOT_SIGNATURE_DESC
root_sig_desc
;
in create_root_signature()
196
root_sig_desc
.Version = D3D_ROOT_SIGNATURE_VERSION_1_1;
in create_root_signature()
197
root_sig_desc
.Desc_1_1.NumParameters = num_params;
in create_root_signature()
198
root_sig_desc
.Desc_1_1.pParameters = (num_params > 0) ? root_params : NULL;
in create_root_signature()
199
root_sig_desc
.Desc_1_1.NumStaticSamplers = 0;
in create_root_signature()
200
root_sig_desc
.Desc_1_1.pStaticSamplers = NULL;
in create_root_signature()
201
root_sig_desc
.Desc_1_1.Flags = D3D12_ROOT_SIGNATURE_FLAG_NONE;
in create_root_signature()
205
root_sig_desc
.Desc_1_1.Flags |= D3D12_ROOT_SIGNATURE_FLAG_ALLOW_INPUT_ASSEMBLER_INPUT_LAYOUT;
in create_root_signature()
208
root_sig_desc
.Desc_1_1.Flags |= D3D12_ROOT_SIGNATURE_FLAG_ALLOW_STREAM_OUTPUT;
in create_root_signature()
211
if (FAILED(ctx->D3D12SerializeVersionedRootSignature(&
root_sig_desc
,
in create_root_signature()
[all...]
/third_party/mesa3d/src/microsoft/vulkan/
H
A
D
dzn_meta.c
204
D3D12_VERSIONED_ROOT_SIGNATURE_DESC
root_sig_desc
= {
in dzn_meta_indirect_draw_init()
local
218
dzn_device_create_root_sig(device, &
root_sig_desc
);
in dzn_meta_indirect_draw_init()
337
D3D12_VERSIONED_ROOT_SIGNATURE_DESC
root_sig_desc
= {
in dzn_meta_triangle_fan_rewrite_index_init()
local
397
meta->root_sig = dzn_device_create_root_sig(device, &
root_sig_desc
);
in dzn_meta_triangle_fan_rewrite_index_init()
593
D3D12_VERSIONED_ROOT_SIGNATURE_DESC
root_sig_desc
= {
in dzn_meta_blit_create()
local
629
blit->root_sig = dzn_device_create_root_sig(device, &
root_sig_desc
);
in dzn_meta_blit_create()
H
A
D
dzn_descriptor_set.c
731
D3D12_VERSIONED_ROOT_SIGNATURE_DESC
root_sig_desc
= {
in dzn_pipeline_layout_create()
local
743
layout->root.sig = dzn_device_create_root_sig(device, &
root_sig_desc
);
in dzn_pipeline_layout_create()
/third_party/mesa3d/src/microsoft/clc/
H
A
D
compute_test.cpp
233
D3D12_ROOT_SIGNATURE_DESC1
root_sig_desc
;
in create_root_signature()
local
234
root_sig_desc
.NumParameters = 1;
in create_root_signature()
235
root_sig_desc
.pParameters = &root_param;
in create_root_signature()
236
root_sig_desc
.NumStaticSamplers = 0;
in create_root_signature()
237
root_sig_desc
.pStaticSamplers = NULL;
in create_root_signature()
238
root_sig_desc
.Flags = D3D12_ROOT_SIGNATURE_FLAG_NONE;
in create_root_signature()
242
versioned_desc.Desc_1_1 =
root_sig_desc
;
in create_root_signature()
Completed in 9 milliseconds