Home
last modified time | relevance | path

Searched defs:ProgramSources (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/deqp/framework/opengl/
H A DgluShaderProgram.hpp462 struct ProgramSources struct
464 std::vector<std::string> sources[SHADERTYPE_LAST];
465 std::vector<AttribLocationBinding> attribLocationBindings;
467 uint32_t transformFeedbackBufferMode; //!< TF buffer mode, or GL_NONE.
468 std::vector<std::string> transformFeedbackVaryings;
469 bool separable;
471 ProgramSources(void) : transformFeedbackBufferMode(0), separable(false) in ProgramSources() argument
475 ProgramSources &operator<<(const AttribLocationBinding &binding) in operator <<()
480 ProgramSources &operator<<(const TransformFeedbackMode &mode) in operator <<()
485 ProgramSources &operator<<(const TransformFeedbackVarying &varying) in operator <<()
[all …]
/aosp_15_r20/external/angle/src/libANGLE/capture/
H A DFrameCapture.h345 using ProgramSources = gl::ShaderMap<std::string>; variable