end foo
This commit is contained in:
parent
e1a41a526d
commit
3a07155756
4 changed files with 11 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -11,3 +11,4 @@ tests/tests
|
|||
*.swp
|
||||
*.core
|
||||
vgcore*
|
||||
.cache
|
||||
|
|
|
@ -51,8 +51,6 @@ class GameWindow : public endofthejedi::GLWindow {
|
|||
|
||||
void resize() override
|
||||
{
|
||||
//std::cout<<"resize()" << std::endl;
|
||||
|
||||
glViewport(0, 0, getwidth(), getheight());
|
||||
|
||||
// resize the game
|
||||
|
|
|
@ -99,7 +99,15 @@ namespace endofthejedi {
|
|||
m_width = attribs.width;
|
||||
m_height = attribs.height;
|
||||
resize();
|
||||
} else if (event.type == ConfigureNotify) {
|
||||
XConfigureEvent xce = event.xconfigure;
|
||||
|
||||
if ((unsigned int)xce.width != m_width||
|
||||
(unsigned int)xce.height != m_height) {
|
||||
m_width = xce.width;
|
||||
m_height = xce.height;
|
||||
resize();
|
||||
}
|
||||
} else if (event.type == ClientMessage) {
|
||||
if (event.xclient.data.l[0] == (int) m_atomWmDeleteWindow) {
|
||||
stop();
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "polygon_model.hpp"
|
||||
|
||||
#include <iostream>
|
||||
#include <ostream>
|
||||
|
||||
namespace endofthejedi {
|
||||
PolygonModel::PolygonModel(const std::string &filename)
|
||||
|
@ -99,9 +100,7 @@ namespace endofthejedi {
|
|||
return false;
|
||||
}
|
||||
|
||||
aiNode *node = scene->mRootNode;
|
||||
const aiMesh* mesh = scene->mMeshes[node->mMeshes[0]];
|
||||
|
||||
const aiMesh* mesh = scene->mMeshes[0];
|
||||
// 3 vertices per face, 3 floats per vertex
|
||||
m_numVertices = mesh->mNumFaces*3;
|
||||
|
||||
|
|
Loading…
Reference in a new issue