Advertisement
Guest User

Tastebin - Tkabber Plugin

a guest
Dec 1st, 2011
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.71 KB | None | 0 0
  1.     // Это ок:
  2.     glBindTexture ( GL_TEXTURE_2D, texture[1] );
  3.     glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER,GL_LINEAR);
  4.     glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_LINEAR);
  5.     glTexImage2D ( GL_TEXTURE_2D, 0, temp->format->BytesPerPixel, temp->w,
  6.         temp->h, 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE, temp->pixels );
  7.      // Это нет:  
  8.     glBindTexture ( GL_TEXTURE_2D, texture[2] );
  9.     glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER,GL_LINEAR);
  10.     glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_LINEAR_MIPMAP_NEAREST);
  11.     glTexImage2D ( GL_TEXTURE_2D, 0, temp->format->BytesPerPixel, temp->w,
  12.         temp->h, 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE, temp->pixels );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement