This commit is contained in:
2025-06-11 18:52:33 -04:00
parent fa322309f1
commit 13cda6c99b
10 changed files with 10 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -205,6 +205,14 @@ namespace ams
// //rescales the image with linear interpolation
amsfloatimage rescale(int nnx, int nny);
//addition/subtraction/scaling operators?
// amsfloatimage operator+(const amsfloatimage &rhs);
// amsfloatimage operator-(const amsfloatimage &rhs);
// friend amsfloatimage operator-(const amsfloatimage &rhs);
// amsfloatimage operator*(float rhs);
// amsfloatimage operator/(float rhs;
};

View File

@ -6,6 +6,8 @@ namespace ams
void amscppimglib4_test1();
void amscppimglib4_test2();
void amscppimglib4_test3();
}; //end namespace ams
#endif