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:clip_enable
(Results
1 - 8
of
8
) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H
A
D
nvc0_state_validate.c
512
uint8_t
clip_enable
= nvc0->rast->pipe.clip_plane_enable;
in nvc0_validate_clip()
local
526
if (
clip_enable
&& vp->vp.num_ucps < PIPE_MAX_CLIP_PLANES)
in nvc0_validate_clip()
527
nvc0_check_program_ucps(nvc0, vp,
clip_enable
);
in nvc0_validate_clip()
533
clip_enable
&= vp->vp.
clip_enable
;
in nvc0_validate_clip()
534
clip_enable
|= vp->vp.cull_enable;
in nvc0_validate_clip()
536
if (nvc0->state.
clip_enable
!=
clip_enable
) {
in nvc0_validate_clip()
537
nvc0->state.
clip_enable
=
clip_enable
;
in nvc0_validate_clip()
[all...]
H
A
D
nvc0_program.h
40
uint8_t
clip_enable
; /* mask of defined clip planes */
member
H
A
D
nvc0_screen.h
56
uint8_t
clip_enable
;
member
H
A
D
nvc0_program.c
267
vp->vp.
clip_enable
= (1 << info->io.clipDistances) - 1;
in nvc0_vtgp_gen_header()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H
A
D
nv50_state_validate.c
355
uint8_t
clip_enable
= nv50->rast->pipe.clip_plane_enable;
in nv50_validate_clip()
local
368
if (
clip_enable
)
in nv50_validate_clip()
369
nv50_check_program_ucps(nv50, vp,
clip_enable
);
in nv50_validate_clip()
371
clip_enable
&= vp->vp.
clip_enable
;
in nv50_validate_clip()
372
clip_enable
|= vp->vp.cull_enable;
in nv50_validate_clip()
375
PUSH_DATA (push,
clip_enable
);
in nv50_validate_clip()
H
A
D
nv50_program.h
87
uint8_t
clip_enable
; /* mask of defined clip planes */
member
H
A
D
nv50_program.c
413
prog->vp.
clip_enable
= (1 << info_out.io.clipDistances) - 1;
in nv50_program_translate()
H
A
D
nv50_shader_state.c
438
uint32_t clpd_nr = util_last_bit(vp->vp.
clip_enable
| vp->vp.cull_enable);
in nv50_fp_linkage_validate()
Completed in 7 milliseconds