Skip to content

Commit

Permalink
Versão 1.7.2
Browse files Browse the repository at this point in the history
Retirado anti-aliasing para evitar problemas de compatibilidade
  • Loading branch information
sinayra committed Sep 22, 2016
1 parent 8d0cd65 commit 82840e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ chamadas de funções simples para a criação de todos os objetos, utilizando o
Esta biblioteca está configurada para executar juntamente com a GLFW 2.7 e qualquer versão da OpenGL

##Versões
####1.7.2 (22/09/2016)
*Corrigido problema de compatibilidade

####1.7.1 (19/09/2016)
* Corrigido problemas de anti-aliasing

Expand Down
5 changes: 0 additions & 5 deletions src/Evento.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ Evento::Evento(int largura, int altura, const char *titulo){
glfwSetWindowSizeCallback(GLFWwindowsizefun(&redimensionaJanela)); //rever este callback
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);

glHint( GL_LINE_SMOOTH_HINT, GL_NICEST );
glHint( GL_POLYGON_SMOOTH_HINT, GL_NICEST );
glEnable( GL_LINE_SMOOTH );
glEnable( GL_POLYGON_SMOOTH );
}

int Evento::getTamanhoTela(){
Expand Down

0 comments on commit 82840e5

Please sign in to comment.