Home
last modified time | relevance | path

Searched refs:programExecutable (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/angle/src/libANGLE/
H A DProgramPipeline.cpp132 const SharedProgramExecutable &programExecutable = getShaderProgramExecutable(shaderType); in updateExecutableTextures() local
133 ASSERT(programExecutable); in updateExecutableTextures()
135 programExecutable->getActiveSamplersMask()); in updateExecutableTextures()
137 programExecutable->getActiveImagesMask()); in updateExecutableTextures()
139 mExecutable->updateActiveSamplers(*programExecutable); in updateExecutableTextures()
148 const SharedProgramExecutable &programExecutable = getShaderProgramExecutable(shaderType); in updateExecutableSpecConstUsageBits() local
149 ASSERT(programExecutable); in updateExecutableSpecConstUsageBits()
150 specConstUsageBits |= programExecutable->getSpecConstUsageBits(); in updateExecutableSpecConstUsageBits()
343 const SharedProgramExecutable &programExecutable = getShaderProgramExecutable(shaderType); in updateShaderStorageBlocks() local
344 if (programExecutable && !handledStages.test(shaderType)) in updateShaderStorageBlocks()
[all …]
H A DTransformFeedback.cpp155 const ProgramExecutable *programExecutable = in begin() local
157 if (programExecutable) in begin()
160 auto strides = programExecutable->getTransformFeedbackStrides(); in begin()
H A DvalidationES3.cpp3122 const ProgramExecutable *programExecutable = in ValidateBeginTransformFeedback() local
3124 if (!programExecutable) in ValidateBeginTransformFeedback()
3130 if (programExecutable->getLinkedTransformFeedbackVaryings().empty()) in ValidateBeginTransformFeedback()
3136 if (!ValidateProgramExecutableXFBBuffersPresent(context, programExecutable)) in ValidateBeginTransformFeedback()
H A DvalidationES.h958 const ProgramExecutable *programExecutable);
H A DContext.cpp10573 const ProgramExecutable *programExecutable = context->getState().getProgramExecutable(); in updateValidDrawModes() local
10576 if (programExecutable && programExecutable->hasLinkedTessellationShader()) in updateValidDrawModes()
10604 if (!programExecutable || !programExecutable->hasLinkedShaderStage(ShaderType::Geometry)) in updateValidDrawModes()
10616 PrimitiveMode gsMode = programExecutable->getGeometryShaderInputPrimitiveType(); in updateValidDrawModes()
H A DvalidationES.cpp8933 const ProgramExecutable *programExecutable) in ValidateProgramExecutableXFBBuffersPresent() argument
8935 size_t programXfbCount = programExecutable->getTransformFeedbackBufferCount(); in ValidateProgramExecutableXFBBuffersPresent()
/aosp_15_r20/external/angle/src/libANGLE/renderer/vulkan/
H A Dspv_utils.cpp206 const gl::ProgramExecutable &programExecutable, in AssignTransformFeedbackEmulationBindings() argument
214 ASSERT(!programExecutable.getLinkedTransformFeedbackVaryings().empty()); in AssignTransformFeedbackEmulationBindings()
216 programExecutable.getTransformFeedbackBufferMode() == GL_INTERLEAVED_ATTRIBS; in AssignTransformFeedbackEmulationBindings()
218 isInterleaved ? 1 : programExecutable.getLinkedTransformFeedbackVaryings().size(); in AssignTransformFeedbackEmulationBindings()
274 void AssignAttributeLocations(const gl::ProgramExecutable &programExecutable, in AssignAttributeLocations() argument
283 for (const gl::ProgramInput &attribute : programExecutable.getProgramInputs()) in AssignAttributeLocations()
305 programExecutable.getLinkedShaderVersion(gl::ShaderType::Vertex) == 100) in AssignAttributeLocations()
329 void AssignSecondaryOutputLocations(const gl::ProgramExecutable &programExecutable, in AssignSecondaryOutputLocations() argument
332 const auto &secondaryOutputLocations = programExecutable.getSecondaryOutputLocations(); in AssignSecondaryOutputLocations()
333 const auto &outputVariables = programExecutable.getOutputVariables(); in AssignSecondaryOutputLocations()
[all …]
H A Dspv_utils.h150 const gl::ProgramExecutable &programExecutable,
157 const gl::ProgramExecutable &programExecutable,
H A DContextVk.cpp5580 const gl::ProgramExecutable *programExecutable = glState.getProgramExecutable(); in syncState() local
5583 (programExecutable == nullptr || command != gl::Command::Dispatch)) in syncState()
5616 updateAdvancedBlendEquations(programExecutable); in syncState()
5630 updateAdvancedBlendEquations(programExecutable); in syncState()
5906 ASSERT(programExecutable); in syncState()
5908 updateAdvancedBlendEquations(programExecutable); in syncState()
5909 vk::GetImpl(programExecutable)->onProgramBind(); in syncState()
/aosp_15_r20/external/angle/src/libANGLE/renderer/metal/
H A DContextMtl.mm1111 const gl::ProgramExecutable *programExecutable = glState.getProgramExecutable();
1113 if (programExecutable == nullptr || drawFramebuffer == nullptr)
1122 programExecutable->getFragmentOutputsTypeMask()) &
1123 drawFramebuffer->getDrawBufferMask() & programExecutable->getActiveOutputVariablesMask();