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:tfb
(Results
1 - 7
of
7
) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H
A
D
nvc0_shader_state.c
311
struct nvc0_transform_feedback_state *
tfb
;
in nvc0_tfb_validate()
local
314
if (nvc0->gmtyprog)
tfb
= nvc0->gmtyprog->
tfb
;
in nvc0_tfb_validate()
316
if (nvc0->tevlprog)
tfb
= nvc0->tevlprog->
tfb
;
in nvc0_tfb_validate()
318
tfb
= nvc0->vertprog->
tfb
;
in nvc0_tfb_validate()
320
IMMED_NVC0(push, NVC0_3D(TFB_ENABLE), (
tfb
&& nvc0->num_tfbbufs) ? 1 : 0);
in nvc0_tfb_validate()
322
if (
tfb
&&
tfb
!
in nvc0_tfb_validate()
[all...]
H
A
D
nvc0_program.c
516
struct nvc0_transform_feedback_state *
tfb
;
in nvc0_program_create_tfb_state()
local
519
tfb
= MALLOC_STRUCT(nvc0_transform_feedback_state);
in nvc0_program_create_tfb_state()
520
if (!
tfb
)
in nvc0_program_create_tfb_state()
523
tfb
->stride[b] = pso->stride[b] * 4;
in nvc0_program_create_tfb_state()
524
tfb
->varying_count[b] = 0;
in nvc0_program_create_tfb_state()
526
memset(
tfb
->varying_index, 0xff, sizeof(
tfb
->varying_index)); /* = skip */
in nvc0_program_create_tfb_state()
538
tfb
->varying_index[b][p++] = info->out[r].slot[s + c];
in nvc0_program_create_tfb_state()
540
tfb
->varying_count[b] = MAX2(
tfb
in nvc0_program_create_tfb_state()
[all...]
H
A
D
nvc0_program.h
71
struct nvc0_transform_feedback_state *
tfb
;
member
H
A
D
nvc0_screen.h
59
struct nvc0_transform_feedback_state *
tfb
;
member
H
A
D
nvc0_context.c
250
nvc0->screen->save_state.
tfb
= NULL;
in nvc0_destroy()
H
A
D
nvc0_state_validate.c
892
/* Reset
tfb
as the shader that owns it may have been deleted. */
in nvc0_switch_pipe_context()
893
ctx_to->state.
tfb
= NULL;
in nvc0_switch_pipe_context()
/third_party/vk-gl-cts/external/openglcts/modules/common/
H
A
D
glcSeparableProgramsTransformFeedbackTests.cpp
255
Utils::buffer
tfb
(m_context);
in iterate()
257
tfb
.generate(GL_TRANSFORM_FEEDBACK_BUFFER);
in iterate()
258
tfb
.update(tfbSize, 0 /* data */, GL_DYNAMIC_COPY);
in iterate()
259
tfb
.bindRange(0, 0, tfbSize);
in iterate()
Completed in 6 milliseconds