Advertisement
Guest User

Untitled

a guest
Dec 7th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.65 KB | None | 0 0
  1. [ 56%] Building CXX object Source/Urho3D/CMakeFiles/Urho3D.dir/Graphics/Octree.cpp.o
  2. [ 56%] Building CXX object Source/Urho3D/CMakeFiles/Urho3D.dir/Graphics/OctreeQuery.cpp.o
  3. [ 56%] Building CXX object Source/Urho3D/CMakeFiles/Urho3D.dir/Graphics/OpenGL/OGLConstantBuffer.cpp.o
  4. [ 56%] Building CXX object Source/Urho3D/CMakeFiles/Urho3D.dir/Graphics/OpenGL/OGLGraphics.cpp.o
  5. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In function ‘bool Urho3D::CheckExtension(const Urho3D::String&)’:
  6. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:180:60: error: ‘glGetString’ was not declared in this scope
  7. extensions = (const char*)glGetString(GL_EXTENSIONS);
  8. ^
  9. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetDither(bool)’:
  10. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:578:27: error: ‘glEnable’ was not declared in this scope
  11. glEnable(GL_DITHER);
  12. ^
  13. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:580:28: error: ‘glDisable’ was not declared in this scope
  14. glDisable(GL_DITHER);
  15. ^
  16. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘bool Urho3D::Graphics::TakeScreenShot(Urho3D::Image&)’:
  17. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:629:87: error: ‘glReadPixels’ was not declared in this scope
  18. Pixels(0, 0, width_, height_, GL_RGBA, GL_UNSIGNED_BYTE, destImage.GetData());
  19. ^
  20. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘bool Urho3D::Graphics::BeginFrame()’:
  21. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:654:27: error: ‘glEnable’ was not declared in this scope
  22. glEnable(GL_DEPTH_TEST);
  23. ^
  24. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:655:42: error: ‘glDepthFunc’ was not declared in this scope
  25. glDepthFunc(glCmpFunc[depthTestMode_]);
  26. ^
  27. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::Clear(unsigned int, const Urho3D::Color&, float, unsigned int)’:
  28. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:707:37: error: ‘glStencilMask’ was not declared in this scope
  29. glStencilMask(M_MAX_UNSIGNED);
  30. ^
  31. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:713:60: error: ‘glClearColor’ was not declared in this scope
  32. glClearColor(color.r_, color.g_, color.b_, color.a_);
  33. ^
  34. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:718:27: error: ‘glClearDepthf’ was not declared in this scope
  35. glClearDepth(depth);
  36. ^
  37. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:723:31: error: ‘glClearStencil’ was not declared in this scope
  38. glClearStencil(stencil);
  39. ^
  40. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:734:20: error: ‘glClear’ was not declared in this scope
  41. glClear(glFlags);
  42. ^
  43. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:740:40: error: ‘glStencilMask’ was not declared in this scope
  44. glStencilMask(stencilWriteMask_);
  45. ^
  46. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘bool Urho3D::Graphics::ResolveToTexture(Urho3D::Texture2D*, const Urho3D::IntRect&)’:
  47. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:765:120: error: ‘glCopyTexSubImage2D’ was not declared in this scope
  48. , 0, vpCopy.left_, height_ - vpCopy.bottom_, vpCopy.Width(), vpCopy.Height());
  49. ^
  50. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::Draw(Urho3D::PrimitiveType, unsigned int, unsigned int)’:
  51. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:906:59: error: ‘glDrawArrays’ was not declared in this scope
  52. glDrawArrays(glPrimitiveType, vertexStart, vertexCount);
  53. ^
  54. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::Draw(Urho3D::PrimitiveType, unsigned int, unsigned int, unsigned int, unsigned int)’:
  55. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:925:115: error: ‘glDrawElements’ was not declared in this scope
  56. dexCount, indexType, reinterpret_cast<const GLvoid*>(indexStart * indexSize));
  57. ^
  58. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetIndexBuffer(Urho3D::IndexBuffer*)’:
  59. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1059:82: error: ‘glBindBuffer’ was not declared in this scope
  60. lBindBuffer(GL_ELEMENT_ARRAY_BUFFER, buffer ? buffer->GetGPUObjectName() : 0);
  61. ^
  62. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaders(Urho3D::ShaderVariation*, Urho3D::ShaderVariation*)’:
  63. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1109:23: error: ‘glUseProgram’ was not declared in this scope
  64. glUseProgram(0);
  65. ^
  66. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1127:60: error: ‘glUseProgram’ was not declared in this scope
  67. glUseProgram(i->second_->GetGPUObjectName());
  68. ^
  69. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1132:31: error: ‘glUseProgram’ was not declared in this scope
  70. glUseProgram(0);
  71. ^
  72. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1153:31: error: ‘glUseProgram’ was not declared in this scope
  73. glUseProgram(0);
  74. ^
  75. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaderParameter(Urho3D::StringHash, const float*, unsigned int)’:
  76. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1221:58: error: ‘glUniform1fv’ was not declared in this scope
  77. glUniform1fv(info->location_, count, data);
  78. ^
  79. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1225:62: error: ‘glUniform2fv’ was not declared in this scope
  80. glUniform2fv(info->location_, count / 2, data);
  81. ^
  82. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1229:62: error: ‘glUniform3fv’ was not declared in this scope
  83. glUniform3fv(info->location_, count / 3, data);
  84. ^
  85. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1233:62: error: ‘glUniform4fv’ was not declared in this scope
  86. glUniform4fv(info->location_, count / 4, data);
  87. ^
  88. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1237:78: error: ‘glUniformMatrix3fv’ was not declared in this scope
  89. glUniformMatrix3fv(info->location_, count / 9, GL_FALSE, data);
  90. ^
  91. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1241:79: error: ‘glUniformMatrix4fv’ was not declared in this scope
  92. glUniformMatrix4fv(info->location_, count / 16, GL_FALSE, data);
  93. ^
  94. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaderParameter(Urho3D::StringHash, float)’:
  95. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1266:52: error: ‘glUniform1fv’ was not declared in this scope
  96. glUniform1fv(info->location_, 1, &value);
  97. ^
  98. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaderParameter(Urho3D::StringHash, int)’:
  99. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1287:47: error: ‘glUniform1i’ was not declared in this scope
  100. glUniform1i(info->location_, value);
  101. ^
  102. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaderParameter(Urho3D::StringHash, bool)’:
  103. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1309:52: error: ‘glUniform1i’ was not declared in this scope
  104. glUniform1i(info->location_, (int)value);
  105. ^
  106. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaderParameter(Urho3D::StringHash, const Urho3D::Vector2&)’:
  107. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1339:63: error: ‘glUniform1fv’ was not declared in this scope
  108. glUniform1fv(info->location_, 1, vector.Data());
  109. ^
  110. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1343:63: error: ‘glUniform2fv’ was not declared in this scope
  111. glUniform2fv(info->location_, 1, vector.Data());
  112. ^
  113. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaderParameter(Urho3D::StringHash, const Urho3D::Matrix3&)’:
  114. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1368:75: error: ‘glUniformMatrix3fv’ was not declared in this scope
  115. glUniformMatrix3fv(info->location_, 1, GL_FALSE, matrix.Data());
  116. ^
  117. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaderParameter(Urho3D::StringHash, const Urho3D::Vector3&)’:
  118. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1393:63: error: ‘glUniform1fv’ was not declared in this scope
  119. glUniform1fv(info->location_, 1, vector.Data());
  120. ^
  121. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1397:63: error: ‘glUniform2fv’ was not declared in this scope
  122. glUniform2fv(info->location_, 1, vector.Data());
  123. ^
  124. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1401:63: error: ‘glUniform3fv’ was not declared in this scope
  125. glUniform3fv(info->location_, 1, vector.Data());
  126. ^
  127. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaderParameter(Urho3D::StringHash, const Urho3D::Matrix4&)’:
  128. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1426:75: error: ‘glUniformMatrix4fv’ was not declared in this scope
  129. glUniformMatrix4fv(info->location_, 1, GL_FALSE, matrix.Data());
  130. ^
  131. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaderParameter(Urho3D::StringHash, const Urho3D::Vector4&)’:
  132. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1451:63: error: ‘glUniform1fv’ was not declared in this scope
  133. glUniform1fv(info->location_, 1, vector.Data());
  134. ^
  135. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1455:63: error: ‘glUniform2fv’ was not declared in this scope
  136. glUniform2fv(info->location_, 1, vector.Data());
  137. ^
  138. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1459:63: error: ‘glUniform3fv’ was not declared in this scope
  139. glUniform3fv(info->location_, 1, vector.Data());
  140. ^
  141. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1463:63: error: ‘glUniform4fv’ was not declared in this scope
  142. glUniform4fv(info->location_, 1, vector.Data());
  143. ^
  144. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetShaderParameter(Urho3D::StringHash, const Urho3D::Matrix3x4&)’:
  145. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1503:79: error: ‘glUniformMatrix4fv’ was not declared in this scope
  146. glUniformMatrix4fv(info->location_, 1, GL_FALSE, fullMatrix.Data());
  147. ^
  148. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetTexture(unsigned int, Urho3D::Texture*)’:
  149. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1570:48: error: ‘glActiveTexture’ was not declared in this scope
  150. glActiveTexture(GL_TEXTURE0 + index);
  151. ^
  152. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1579:61: error: ‘glBindTexture’ was not declared in this scope
  153. glBindTexture(impl_->textureTypes_[index], 0);
  154. ^
  155. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1580:62: error: ‘glBindTexture’ was not declared in this scope
  156. glBindTexture(glType, texture->GetGPUObjectName());
  157. ^
  158. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1590:57: error: ‘glBindTexture’ was not declared in this scope
  159. glBindTexture(impl_->textureTypes_[index], 0);
  160. ^
  161. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1602:52: error: ‘glActiveTexture’ was not declared in this scope
  162. glActiveTexture(GL_TEXTURE0 + index);
  163. ^
  164. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1606:76: error: ‘glBindTexture’ was not declared in this scope
  165. glBindTexture(texture->GetTarget(), texture->GetGPUObjectName());
  166. ^
  167. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetTextureForUpdate(Urho3D::Texture*)’:
  168. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1619:36: error: ‘glActiveTexture’ was not declared in this scope
  169. glActiveTexture(GL_TEXTURE0);
  170. ^
  171. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1626:49: error: ‘glBindTexture’ was not declared in this scope
  172. glBindTexture(impl_->textureTypes_[0], 0);
  173. ^
  174. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1627:54: error: ‘glBindTexture’ was not declared in this scope
  175. glBindTexture(glType, texture->GetGPUObjectName());
  176. ^
  177. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetViewport(const Urho3D::IntRect&)’:
  178. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1790:97: error: ‘glViewport’ was not declared in this scope
  179. opy.left_, rtSize.y_ - rectCopy.bottom_, rectCopy.Width(), rectCopy.Height());
  180. ^
  181. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetBlendMode(Urho3D::BlendMode, bool)’:
  182. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1802:31: error: ‘glDisable’ was not declared in this scope
  183. glDisable(GL_BLEND);
  184. ^
  185. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1805:30: error: ‘glEnable’ was not declared in this scope
  186. glEnable(GL_BLEND);
  187. ^
  188. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1806:60: error: ‘glBlendFunc’ was not declared in this scope
  189. glBlendFunc(glSrcBlend[mode], glDestBlend[mode]);
  190. ^
  191. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1807:44: error: ‘glBlendEquation’ was not declared in this scope
  192. glBlendEquation(glBlendOp[mode]);
  193. ^
  194. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1816:49: error: ‘glEnable’ was not declared in this scope
  195. glEnable(GL_SAMPLE_ALPHA_TO_COVERAGE);
  196. ^
  197. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1818:50: error: ‘glDisable’ was not declared in this scope
  198. glDisable(GL_SAMPLE_ALPHA_TO_COVERAGE);
  199. ^
  200. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetColorWrite(bool)’:
  201. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1829:59: error: ‘glColorMask’ was not declared in this scope
  202. glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
  203. ^
  204. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1831:63: error: ‘glColorMask’ was not declared in this scope
  205. glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
  206. ^
  207. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetCullMode(Urho3D::CullMode)’:
  208. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1842:35: error: ‘glDisable’ was not declared in this scope
  209. glDisable(GL_CULL_FACE);
  210. ^
  211. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1846:34: error: ‘glEnable’ was not declared in this scope
  212. glEnable(GL_CULL_FACE);
  213. ^
  214. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1847:61: error: ‘glCullFace’ was not declared in this scope
  215. glCullFace(mode == CULL_CCW ? GL_FRONT : GL_BACK);
  216. ^
  217. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetDepthTest(Urho3D::CompareMode)’:
  218. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1880:36: error: ‘glDepthFunc’ was not declared in this scope
  219. glDepthFunc(glCmpFunc[mode]);
  220. ^
  221. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetDepthWrite(bool)’:
  222. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1889:48: error: ‘glDepthMask’ was not declared in this scope
  223. glDepthMask(enable ? GL_TRUE : GL_FALSE);
  224. ^
  225. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetScissorTest(bool, const Urho3D::Rect&, bool)’:
  226. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1950:100: error: ‘glScissor’ was not declared in this scope
  227. ntRect.left_, rtSize.y_ - intRect.bottom_, intRect.Width(), intRect.Height());
  228. ^
  229. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1960:37: error: ‘glEnable’ was not declared in this scope
  230. glEnable(GL_SCISSOR_TEST);
  231. ^
  232. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1962:38: error: ‘glDisable’ was not declared in this scope
  233. glDisable(GL_SCISSOR_TEST);
  234. ^
  235. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetScissorTest(bool, const Urho3D::IntRect&)’:
  236. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:1991:100: error: ‘glScissor’ was not declared in this scope
  237. ntRect.left_, rtSize.y_ - intRect.bottom_, intRect.Width(), intRect.Height());
  238. ^
  239. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:2001:37: error: ‘glEnable’ was not declared in this scope
  240. glEnable(GL_SCISSOR_TEST);
  241. ^
  242. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:2003:38: error: ‘glDisable’ was not declared in this scope
  243. glDisable(GL_SCISSOR_TEST);
  244. ^
  245. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘bool Urho3D::Graphics::GetDither() const’:
  246. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:2085:33: error: ‘glIsEnabled’ was not declared in this scope
  247. return glIsEnabled(GL_DITHER) ? true : false;
  248. ^
  249. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::Restore()’:
  250. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:2546:43: error: ‘glPixelStorei’ was not declared in this scope
  251. glPixelStorei(GL_PACK_ALIGNMENT, 1);
  252. ^
  253. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::SetVBO(unsigned int)’:
  254. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:2571:49: error: ‘glBindBuffer’ was not declared in this scope
  255. glBindBuffer(GL_ARRAY_BUFFER, object);
  256. ^
  257. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::PrepareDraw()’:
  258. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3126:59: error: ‘glEnableVertexAttribArray’ was not declared in this scope
  259. glEnableVertexAttribArray(location);
  260. ^
  261. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3153:56: error: ‘glVertexAttribPointer’ was not declared in this scope
  262. (const void *)(size_t)dataStart);
  263. ^
  264. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3165:52: error: ‘glDisableVertexAttribArray’ was not declared in this scope
  265. glDisableVertexAttribArray(location);
  266. ^
  267. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::ResetCachedState()’:
  268. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3257:31: error: ‘glEnable’ was not declared in this scope
  269. glEnable(GL_DEPTH_TEST);
  270. ^
  271. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘unsigned int Urho3D::Graphics::CreateFramebuffer()’:
  272. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3302:37: error: ‘glGenFramebuffers’ was not declared in this scope
  273. glGenFramebuffers(1, &newFbo);
  274. ^
  275. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::DeleteFramebuffer(unsigned int)’:
  276. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3313:37: error: ‘glDeleteFramebuffers’ was not declared in this scope
  277. glDeleteFramebuffers(1, &fbo);
  278. ^
  279. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::BindFramebuffer(unsigned int)’:
  280. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3323:46: error: ‘glBindFramebuffer’ was not declared in this scope
  281. glBindFramebuffer(GL_FRAMEBUFFER, fbo);
  282. ^
  283. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::BindColorAttachment(unsigned int, unsigned int, unsigned int, bool)’:
  284. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3343:99: error: ‘glFramebufferTexture2D’ was not declared in this scope
  285. ferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0 + index, target, object, 0);
  286. ^
  287. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3345:108: error: ‘glFramebufferRenderbuffer’ was not declared in this scope
  288. buffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0 + index, GL_RENDERBUFFER, object);
  289. ^
  290. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::BindDepthAttachment(unsigned int, bool)’:
  291. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3366:97: error: ‘glFramebufferTexture2D’ was not declared in this scope
  292. ufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, object, 0);
  293. ^
  294. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3368:99: error: ‘glFramebufferRenderbuffer’ was not declared in this scope
  295. ferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, object);
  296. ^
  297. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘void Urho3D::Graphics::BindStencilAttachment(unsigned int, bool)’:
  298. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3389:99: error: ‘glFramebufferTexture2D’ was not declared in this scope
  299. ferTexture2D(GL_FRAMEBUFFER, GL_STENCIL_ATTACHMENT, GL_TEXTURE_2D, object, 0);
  300. ^
  301. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3391:101: error: ‘glFramebufferRenderbuffer’ was not declared in this scope
  302. rRenderbuffer(GL_FRAMEBUFFER, GL_STENCIL_ATTACHMENT, GL_RENDERBUFFER, object);
  303. ^
  304. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp: In member function ‘bool Urho3D::Graphics::CheckFramebuffer()’:
  305. /home/linaro/dev/urho/Urho3D/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp:3402:55: error: ‘glCheckFramebufferStatus’ was not declared in this scope
  306. return glCheckFramebufferStatus(GL_FRAMEBUFFER) == GL_FRAMEBUFFER_COMPLETE;
  307. ^
  308. Source/Urho3D/CMakeFiles/Urho3D.dir/build.make:2253: recipe for target 'Source/Urho3D/CMakeFiles/Urho3D.dir/Graphics/OpenGL/OGLGraphics.cpp.o' failed
  309. make[2]: *** [Source/Urho3D/CMakeFiles/Urho3D.dir/Graphics/OpenGL/OGLGraphics.cpp.o] Error 1
  310. CMakeFiles/Makefile2:1428: recipe for target 'Source/Urho3D/CMakeFiles/Urho3D.dir/all' failed
  311. make[1]: *** [Source/Urho3D/CMakeFiles/Urho3D.dir/all] Error 2
  312. Makefile:149: recipe for target 'all' failed
  313. make: *** [all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement