On Fri, 26 Aug 2022 17:34:41 GMT, Ambarish Rapte <ara...@openjdk.org> wrote:
>> What do you mean by "revert the type function parameter here"? Doesn't the >> type parameter match after a change to the gradle file? > >> What do you mean by "revert the type function parameter here"? > > `VsOutput main(VsInput vsInput)`: in the declaration, the type of function > parameter `VsInput vsInput` should be reverted with change in build.gradle. > `VsOutput main(VsInput vsInput)` should be changed to `VsOutput > main(VertexType vsInput)` I still don't understand. What is `VertexType`? I see a comment on `VsInput` "// this is a .hlsl mirror of the vertex format, see VertexTypes.h". If the gradle file has `"/DVertexType=VsInput"`, shouldn't it be fine with `VsInput` as the main function argument? ------------- PR: https://git.openjdk.org/jfx/pull/789