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