Giter VIP home page Giter VIP logo

Comments (2)

emvivre avatar emvivre commented on July 17, 2024

Hello,
In my side, with C++11 or C++17 the initialization to 0 is turn off. But it's horrible because it use random values on stack, and the compiler does not detect that glm variables are not initialized.

I would prefered to have a glm library that initialize zero values by default, and propose to user the non-intialization version with a macro definition.

See the following code for an example :

$ git clone https://github.com/g-truc/glm
$ cat main.cpp
#include <iostream>
#include "glm/glm.hpp"
#include <vector>
int main()
{
         glm::dvec2 v;
         std::vector< glm::dvec2 > vec;
         for ( glm::dvec2 p : vec ) {
                 v += p;
         }
         std::cout << v.x << " " << v.y << "\n";
         return 0;
}
$ g++ -o main main.cpp -Wall -Werror -g -Iglm/ -std=c++11
$ ./main
6.92165e-310 0
$ g++ -o main main.cpp -Wall -Werror -g -Iglm/ -std=c++17
$ ./main
6.92317e-310 0

from glm.

Groovounet avatar Groovounet commented on July 17, 2024

Hi,

Not initializing vector types is a behavior defined by GLSL spec which GLM follows. This is why GLM_FORCE_CTOR_INIT exist.

from glm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.