@@ -610,7 +610,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
610610 }
611611 }
612612
613- // TODO(ecoal95 ): Probably in the future we should keep track of the
613+ // TODO(emilio ): Probably in the future we should keep track of the
614614 // generated objects, either here or in the webgl thread
615615 // https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5
616616 fn CreateBuffer ( & self ) -> Option < Root < WebGLBuffer > > {
@@ -1116,8 +1116,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
11161116 if texture. is_none ( ) {
11171117 return self . webgl_error ( InvalidOperation ) ;
11181118 }
1119- // TODO(ecoal95): Validate more parameters
1120-
1119+ // TODO(emilio): Validate more parameters
11211120 let source = match source {
11221121 Some ( s) => s,
11231122 None => return ,
@@ -1144,7 +1143,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
11441143 } ;
11451144
11461145 let size = Size2D :: new ( img. width as i32 , img. height as i32 ) ;
1147- // TODO(ecoal95 ): Validate that the format argument is coherent with the image.
1146+ // TODO(emilio ): Validate that the format argument is coherent with the image.
11481147 // RGB8 should be easy to support too
11491148 let mut data = match img. format {
11501149 PixelFormat :: RGBA8 => img. bytes . to_vec ( ) ,
@@ -1155,7 +1154,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
11551154
11561155 ( data, size)
11571156 } ,
1158- // TODO(ecoal95 ): Getting canvas data is implemented in CanvasRenderingContext2D, but
1157+ // TODO(emilio ): Getting canvas data is implemented in CanvasRenderingContext2D, but
11591158 // we need to refactor it moving it to `HTMLCanvasElement` and supporting WebGLContext
11601159 ImageDataOrHTMLImageElementOrHTMLCanvasElementOrHTMLVideoElement :: HTMLCanvasElement ( canvas) => {
11611160 let canvas = canvas. r ( ) ;
@@ -1170,7 +1169,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
11701169 => unimplemented ! ( ) ,
11711170 } ;
11721171
1173- // TODO(ecoal95 ): Invert axis, convert colorspace, premultiply alpha if requested
1172+ // TODO(emilio ): Invert axis, convert colorspace, premultiply alpha if requested
11741173 let msg = CanvasWebGLMsg :: TexImage2D ( target, level, internal_format as i32 ,
11751174 size. width , size. height ,
11761175 format, data_type, pixels) ;
0 commit comments