fix stdfloat_double goof

This commit is contained in:
David Rose 2012-09-20 19:04:25 +00:00
parent 22534c9a07
commit 3df5abf110

View File

@ -989,10 +989,10 @@ void PfmFile::
extrude(const Lens *lens) {
nassertv(is_valid());
static LMatrix4f from_uv(2.0f, 0.0f, 0.0f, 0.0f,
0.0f, 2.0f, 0.0f, 0.0f,
0.0f, 0.0f, 2.0f, 0.0f,
-1.0f, -1.0f, -1.0f, 1.0f);
static LMatrix4 from_uv(2.0, 0.0, 0.0, 0.0,
0.0, 2.0, 0.0, 0.0,
0.0, 0.0, 2.0, 0.0,
-1.0, -1.0, -1.0, 1.0);
PfmFile result;
result.clear(_x_size, _y_size, 3);