| 1174 | |
| 1175 | template <typename SerialiserType> |
| 1176 | void SerialiseProgramUniforms(SerialiserType &ser, CaptureState state, |
| 1177 | const PerStageReflections &stages, GLuint prog, |
| 1178 | std::map<GLint, GLint> *locTranslate) |
| 1179 | { |
| 1180 | const bool CopyUniforms = false; |
| 1181 | const bool SerialiseUniforms = true; |
| 1182 | ForAllProgramUniforms<CopyUniforms, SerialiseUniforms>(&ser, state, stages, prog, stages, prog, |
| 1183 | locTranslate); |
| 1184 | } |
| 1185 | |
| 1186 | template void SerialiseProgramUniforms(ReadSerialiser &ser, CaptureState state, |
| 1187 | const PerStageReflections &stages, GLuint prog, |
no outgoing calls
no test coverage detected