Update param description in TimestampWrapper

PiperOrigin-RevId: 575806256
This commit is contained in:
simakova 2023-10-23 06:59:57 -07:00 committed by Copybara-Service
parent 9d3d7abdc6
commit 1ba1998e8d

View File

@ -39,8 +39,10 @@ public final class TimestampWrapper implements GlEffect {
* *
* @param glEffect The {@link GlEffect} to apply, from {@code startTimeUs} to {@code endTimeUs}. * @param glEffect The {@link GlEffect} to apply, from {@code startTimeUs} to {@code endTimeUs}.
* This instance must not change the output dimensions. * This instance must not change the output dimensions.
* @param startTimeUs The time to begin applying {@code glEffect} on. Must be non-negative. * @param startTimeUs The time to begin applying {@code glEffect} on, in microseconds. Must be
* @param endTimeUs The time to stop applying {code glEffect} on. Must be non-negative. * non-negative.
* @param endTimeUs The time to stop applying {code glEffect} on, in microseconds. Must be
* non-negative.
*/ */
public TimestampWrapper( public TimestampWrapper(
GlEffect glEffect, @IntRange(from = 0) long startTimeUs, @IntRange(from = 0) long endTimeUs) { GlEffect glEffect, @IntRange(from = 0) long startTimeUs, @IntRange(from = 0) long endTimeUs) {