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:hasGeometryShader
(Results
1 - 3
of
3
) sorted by relevance
/third_party/vk-gl-cts/framework/opengl/simplereference/
H
A
D
sglrShaderProgram.hpp
161
inline bool
hasGeometryShader
(void) const { return m_geometryShaderSet; }
in hasGeometryShader()
function in sglr::pdec::ShaderProgramDeclaration
163
inline size_t getVertexOutputCount (void) const { return
hasGeometryShader
() ? m_vertexToGeometryVaryings.size() : m_vertexToFragmentVaryings.size(); }
in getVertexOutputCount()
164
inline size_t getFragmentInputCount (void) const { return
hasGeometryShader
() ? m_geometryToFragmentVaryings.size() : m_vertexToFragmentVaryings.size(); }
in getFragmentInputCount()
166
inline size_t getGeometryInputCount (void) const { return
hasGeometryShader
() ? m_vertexToGeometryVaryings.size() : 0; }
in getGeometryInputCount()
167
inline size_t getGeometryOutputCount (void) const { return
hasGeometryShader
() ? m_geometryToFragmentVaryings.size() : 0; }
in getGeometryOutputCount()
H
A
D
sglrShaderProgram.cpp
113
if (
hasGeometryShader
())
in valid()
146
, m_geomSrc (decl.
hasGeometryShader
() ? (decl.m_geometrySource) : (""))
in ShaderProgram()
147
, m_hasGeometryShader (decl.
hasGeometryShader
())
in ShaderProgram()
/third_party/vk-gl-cts/modules/gles31/functional/
H
A
D
es31fProgramInterfaceQueryTests.cpp
2873
const bool
hasGeometryShader
= (m_caseType == CASE_VERTEX_GEO_FRAGMENT) ||
2880
if (
hasGeometryShader
&& !supportsES32orGL45 && !m_context.getContextInfo().isExtensionSupported("GL_EXT_geometry_shader"))
Completed in 8 milliseconds