What about the types int2, int3, float2, float3 etc

后端 未结 5 1021
孤城傲影
孤城傲影 2020-12-20 13:03

I\'ve seen different code snippets using these types, but I haven\'t seen if they are defined in some or just defined in a \"local header file\"

5条回答
  •  长情又很酷
    2020-12-20 13:20

    AFAIK there is no standard header file that defines these types. According to your description int2 means a pair of two ints which can be represented in C++ as std::pair.

提交回复
热议问题