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:shader_file
(Results
1 - 2
of
2
) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H
A
D
gen_vk_internal_shaders.py
202
# Gets the namespace name given to constants generated from
shader_file
203
def get_namespace_name(
shader_file
):
204
return get_var_name(os.path.basename(
shader_file
), '')
207
# Gets the namespace name given to constants generated from
shader_file
208
def get_variation_table_name(
shader_file
, prefix='k'):
209
return get_var_name(os.path.basename(
shader_file
), prefix) + '_shaders'
346
def __init__(self,
shader_file
, preprocessor_args, output_path, variable_name):
354
self.
shader_file
=
shader_file
378
"Error running preprocessor on " + self.
shader_file
)
[all...]
/third_party/vk-gl-cts/external/amber/src/samples/
H
A
D
amber.cc
625
std::ofstream
shader_file
;
local
626
shader_file
.open(options.shader_filename, std::ios::out);
627
if (!
shader_file
.is_open()) {
633
shader_file
<< ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
635
shader_file
<< "; " << sh.shader_name << std::endl
637
shader_file
<< disassemble(options.spv_env, sh.shader_data)
640
shader_file
.close();
Completed in 3 milliseconds