Changed: #878 Fix typos in comments/code

This commit is contained in:
kervala 2010-12-08 14:49:24 +01:00
parent 62189a69b8
commit eaa10899d0
6 changed files with 9 additions and 9 deletions

View file

@ -184,7 +184,7 @@ public:
typedef std::vector<CVPInstruction> TProgram;
public:
/** Parse a vertex program, and convert to proprietary format.
* It is intended to be use by a driver implementation.
* It is intended to be used by a driver implementation.
* \warning: Only syntax is checked. It doesn't check that a register has been initialised before use.
* \param src The input text of a vertex program, in OpenGL format.
* \param result The result program.

View file

@ -2425,7 +2425,7 @@ bool CDriverGL::getAdapter(uint adapter, CAdapter &desc) const
desc.Driver = (const char *) glGetString (GL_VERSION);
desc.Vendor= (const char *) glGetString (GL_VENDOR);
desc.Description = "Default openGL adapter";
desc.Description = "Default OpenGL adapter";
desc.DeviceId = 0;
desc.DriverVersion = 0;
desc.Revision = 0;

View file

@ -883,7 +883,6 @@ void CDriverGL::setupGlArraysStd(CVertexBufferInfo &vb)
case CVertexBufferInfo::HwNVIDIA:
case CVertexBufferInfo::HwARB:
{
// setup vertex ptr.
//-----------
uint numVertexCoord = CVertexBuffer::NumComponentsType[vb.Type[CVertexBuffer::Position]];

View file

@ -21,6 +21,7 @@
#include "nel/net/callback_client.h"
#include "nel/net/net_log.h"
#ifdef USE_MESSAGE_RECORDER
#include "nel/net/message_recorder.h"
#endif