Searched refs:entryPointType (Results 1 – 4 of 4) sorted by relevance
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/vulkan/ |
D | ProgramVk.cpp | 450 void ProgramVk::setUniformImpl(GLint location, GLsizei count, const T *v, GLenum entryPointType) in setUniformImpl() argument 458 if (linkedUniform.typeInfo->type == entryPointType) in setUniformImpl() 492 ASSERT(linkedUniform.typeInfo->type == gl::VariableBoolVectorType(entryPointType)); in setUniformImpl() 515 void ProgramVk::getUniformImpl(GLint location, T *v, GLenum entryPointType) const in getUniformImpl() 528 ASSERT(linkedUniform.typeInfo->componentType == entryPointType || in getUniformImpl() 529 linkedUniform.typeInfo->componentType == gl::VariableBoolVectorType(entryPointType)); in getUniformImpl()
|
D | ProgramVk.h | 164 void getUniformImpl(GLint location, T *v, GLenum entryPointType) const; 167 void setUniformImpl(GLint location, GLsizei count, const T *v, GLenum entryPointType);
|
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/metal/ |
D | ProgramMtl.mm | 379 void ProgramMtl::setUniformImpl(GLint location, GLsizei count, const T *v, GLenum entryPointType) 391 if (linkedUniform.typeInfo->type == entryPointType) 425 ASSERT(linkedUniform.typeInfo->type == gl::VariableBoolVectorType(entryPointType)); 448 void ProgramMtl::getUniformImpl(GLint location, T *v, GLenum entryPointType) const 461 ASSERT(linkedUniform.typeInfo->componentType == entryPointType || 462 linkedUniform.typeInfo->componentType == gl::VariableBoolVectorType(entryPointType));
|
D | ProgramMtl.h | 117 void getUniformImpl(GLint location, T *v, GLenum entryPointType) const; 120 void setUniformImpl(GLint location, GLsizei count, const T *v, GLenum entryPointType);
|