当前位置:   article > 正文

OpenGL编程指南 (红宝书 第八版) 样例代码配置问题汇总_#include "vapp.h" #include "vutils.h" #include "vm

#include "vapp.h" #include "vutils.h" #include "vmath.h" #include "vbm.h" #i

目录(?)[+]

本文是笔者自己在配置中遇到问题并解决后将原资料和自己的经验结合整理而成

代码下载

可以在CSDN上搜索

环境配置问题(glut 和 glew)1

可以参考我的另一篇博文《使用cmake和visual studio编译freeglut和glew源代码并配置的流程》,但可能并不是必须的步骤。

基本头文件和库文件配置2

如果发现大片大片的红线,则需要添加include和lib:

点项目右键属性,点击vc++目录 
这里写图片描述

包含目录–编辑,添加红宝书源码目录中的include文件夹 
这里写图片描述 
库目录–编辑,添加红宝书源码目录中的lib文件夹 
这里写图片描述


  • 错误主要是:无法解析的外部符号 _sscanf、 ___iob_func等。这个问题很好解决,主要是VS2015相对于之前的版本有所改动,具体可以自行百度。解决方法如下:
  • 1.右键项目–>属性–>链接器–>输入–>附加依赖项:legacy_stdio_definitions.lib 
  • 2.在源文件中添加以下代码
    1. #if _MSC_VER>=1900
    2. #include "stdio.h"
    3. _ACRTIMP_ALT FILE* __cdecl __acrt_iob_func(unsigned);
    4. #ifdef __cplusplus
    5. extern "C"
    6. #endif
    7. FILE* __cdecl __iob_func(unsigned i) {
    8. return __acrt_iob_func(i);
    9. }
    10. #endif /* _MSC_VER>=1900 */
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    编译通过了,但是VAOs出现访问冲突: 
    这里写图片描述

    原因是glewInit()没有完成所有的初始化,所以在glewInit()前面一行加上:

    glewExperimental = GL_TRUE;

    详见代码部分。

    glewExperimental 相当一个总开关,如果将它设置成 GL_TRUE 就可以让glew支持所有的拓展,glewInit()也可以顺利完成所有的初始化。

以下是正文内容,不断添加中:






第一个渲染程序Triangles3

一、新建一个Win32 Console Application

修改后的完整代码如下:

  1. ///////////////////////////////////////////////////////////////////////
  2. //
  3. // triangles.cpp
  4. //
  5. ///////////////////////////////////////////////////////////////////////
  6. #include "stdafx.h"
  7. #include <iostream>
  8. using namespace std;
  9. #include "vgl.h"
  10. #include "LoadShaders.h"
  11. enum VAO_IDs { Triangles, NumVAOs };
  12. enum Buffer_IDs { ArrayBuffer, NumBuffers };
  13. enum Attrib_IDs { vPosition = 0 };
  14. GLuint VAOs[NumVAOs];
  15. GLuint Buffers[NumBuffers];
  16. const GLuint NumVertices = 6;
  17. //---------------------------------------------------------------------
  18. //
  19. // init
  20. //
  21. void init(void)
  22. {
  23. glGenVertexArrays(NumVAOs, VAOs);
  24. glBindVertexArray(VAOs[Triangles]);
  25. GLfloat vertices[NumVertices][2] = {
  26. { -0.90, -0.90 }, // Triangle 1
  27. { 0.85, -0.90 },
  28. { -0.90, 0.85 },
  29. { 0.90, -0.85 }, // Triangle 2
  30. { 0.90, 0.90 },
  31. { -0.85, 0.90 }
  32. };
  33. glGenBuffers(NumBuffers, Buffers);
  34. glBindBuffer(GL_ARRAY_BUFFER, Buffers[ArrayBuffer]);
  35. glBufferData(GL_ARRAY_BUFFER, sizeof(vertices),
  36. vertices, GL_STATIC_DRAW);
  37. ShaderInfo shaders[] = {
  38. { GL_VERTEX_SHADER, "triangles.vert" },
  39. { GL_FRAGMENT_SHADER, "triangles.frag" },
  40. { GL_NONE, NULL }
  41. };
  42. GLuint program = LoadShaders(shaders);
  43. glUseProgram(program);
  44. glVertexAttribPointer(vPosition, 2, GL_FLOAT,
  45. GL_FALSE, 0, BUFFER_OFFSET(0));
  46. glEnableVertexAttribArray(vPosition);
  47. }
  48. //---------------------------------------------------------------------
  49. //
  50. // display
  51. //
  52. void display(void)
  53. {
  54. glClear(GL_COLOR_BUFFER_BIT);
  55. glBindVertexArray(VAOs[Triangles]);
  56. glDrawArrays(GL_TRIANGLES, 0, NumVertices);
  57. glFlush();
  58. }
  59. //---------------------------------------------------------------------
  60. //
  61. // main
  62. //
  63. int main(int argc, char** argv)
  64. {
  65. glutInit(&argc, argv);
  66. glutInitDisplayMode(GLUT_RGBA);
  67. glutInitWindowSize(512, 512);
  68. glutInitContextVersion(4, 3);
  69. glutInitContextProfile(GLUT_CORE_PROFILE);
  70. glutCreateWindow(argv[0]);
  71. glewExperimental = GL_TRUE;
  72. if (glewInit()) {
  73. cerr << "Unable to initialize GLEW ... exiting" << endl;
  74. exit(EXIT_FAILURE);
  75. }
  76. init();
  77. glutDisplayFunc(display);
  78. glutMainLoop();
  79. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84

二、常见问题

(1)关于”stdafx.h”的错

代码首部添加或删除 #include “stdafx.h”

(2)编译一下发现不通过,报无法解析外部命令的错误

这可能是因为找不到LoadShaders.cpp 
在红宝书源代码目录中有个lib文件夹,里面有LoadShaders.cpp 
在工程的源文件右键添加现有项,把它添加进来 
这里写图片描述

(3) 
现在再编译一次,发现还是报错,说有个libcmtd.lib库跟其他库有冲突,我们可以去忽略它 
点击项目右键–属性–链接器–输入,在忽略特定默认库中添加它 
这里写图片描述

(4) 
编译通过了,但是VAOs出现访问冲突: 
这里写图片描述

原因是glewInit()没有完成所有的初始化,所以在glewInit()前面一行加上:

glewExperimental = GL_TRUE;

详见代码部分。

glewExperimental 相当一个总开关,如果将它设置成 GL_TRUE 就可以让glew支持所有的拓展,glewInit()也可以顺利完成所有的初始化。

(5) 
现在在编译一次发现可以通过了出来 
这里写图片描述 
但是它是白色的三角形不是蓝色的,需要在工程目录中新建两个文本 
更名为triangles.vert和triangles.frag 
这里写图片描述

代码如下:

triangles.vert

  1. layout(location = 0) in vec4 vPosition;
  2. void
  3. main()
  4. {
  5. gl_Position = vPosition;
  6. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

triangles.frag

  1. out vec4 fColor;
  2. void
  3. main()
  4. {
  5. fColor = vec4(0.0, 0.0, 1.0, 1.0);
  6. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

然后再编译运行,出现蓝色三角形 
这里写图片描述






第三章 03\ch03_drawcommands4

(1)修改后的完整代码:

  1. /* $URL$
  2. $Rev$
  3. $Author$
  4. $Date$
  5. $Id$
  6. */
  7. #include "vapp.h"
  8. #include "vutils.h"
  9. #include "vmath.h"
  10. #include "LoadShaders.h"
  11. #include <stdio.h>
  12. using namespace vmath;
  13. // Define USE_PRIMITIVE_RESTART to 0 to use two separate draw commands
  14. #define USE_PRIMITIVE_RESTART 1
  15. BEGIN_APP_DECLARATION(DrawCommandExample)
  16. // Override functions from base class
  17. virtual void Initialize(const char * title);
  18. virtual void Display(bool auto_redraw);
  19. virtual void Finalize(void);
  20. virtual void Reshape(int width, int height);
  21. // Member variables
  22. float aspect;
  23. GLuint render_prog;
  24. GLuint vao[1];
  25. GLuint vbo[1];
  26. GLuint ebo[1];
  27. GLint render_model_matrix_loc;
  28. GLint render_projection_matrix_loc;
  29. END_APP_DECLARATION()
  30. DEFINE_APP(DrawCommandExample, "Drawing Commands Example")
  31. void DrawCommandExample::Initialize(const char * title)
  32. {
  33. base::Initialize(title);
  34. static ShaderInfo shader_info[] =
  35. {
  36. { GL_VERTEX_SHADER, "../../03/ch03_primitive_restart/primitive_restart.vs.glsl" },
  37. { GL_FRAGMENT_SHADER, "../../03/ch03_primitive_restart/primitive_restart.fs.glsl" },
  38. { GL_NONE, NULL }
  39. };
  40. render_prog = LoadShaders(shader_info);
  41. glUseProgram(render_prog);
  42. // "model_matrix" is actually an array of 4 matrices
  43. render_model_matrix_loc = glGetUniformLocation(render_prog, "model_matrix");
  44. render_projection_matrix_loc = glGetUniformLocation(render_prog, "projection_matrix");
  45. // A single triangle
  46. static const GLfloat vertex_positions[] =
  47. {
  48. -1.0f, -1.0f, 0.0f, 1.0f,
  49. 1.0f, -1.0f, 0.0f, 1.0f,
  50. -1.0f, 1.0f, 0.0f, 1.0f,
  51. -1.0f, -1.0f, 0.0f, 1.0f,
  52. };
  53. // Color for each vertex
  54. static const GLfloat vertex_colors[] =
  55. {
  56. 1.0f, 1.0f, 1.0f, 1.0f,
  57. 1.0f, 1.0f, 0.0f, 1.0f,
  58. 1.0f, 0.0f, 1.0f, 1.0f,
  59. 0.0f, 1.0f, 1.0f, 1.0f
  60. };
  61. // Indices for the triangle strips
  62. static const GLushort vertex_indices[] =
  63. {
  64. 0, 1, 2
  65. };
  66. // Set up the element array buffer
  67. glGenBuffers(1, ebo);
  68. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ebo[0]);
  69. glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(vertex_indices), vertex_indices, GL_STATIC_DRAW);
  70. // Set up the vertex attributes
  71. glGenVertexArrays(1, vao);
  72. glBindVertexArray(vao[0]);
  73. glGenBuffers(1, vbo);
  74. glBindBuffer(GL_ARRAY_BUFFER, vbo[0]);
  75. glBufferData(GL_ARRAY_BUFFER, sizeof(vertex_positions) + sizeof(vertex_colors), NULL, GL_STATIC_DRAW);
  76. glBufferSubData(GL_ARRAY_BUFFER, 0, sizeof(vertex_positions), vertex_positions);
  77. glBufferSubData(GL_ARRAY_BUFFER, sizeof(vertex_positions), sizeof(vertex_colors), vertex_colors);
  78. glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, 0, NULL);
  79. glVertexAttribPointer(1, 4, GL_FLOAT, GL_FALSE, 0, (const GLvoid *)sizeof(vertex_positions));
  80. glEnableVertexAttribArray(0);
  81. glEnableVertexAttribArray(1);
  82. glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
  83. }
  84. void DrawCommandExample::Display(bool auto_redraw)
  85. {
  86. float t = float(GetTickCount() & 0x1FFF) / float(0x1FFF);
  87. static float q = 0.0f;
  88. static const vmath::vec3 X(1.0f, 0.0f, 0.0f);
  89. static const vmath::vec3 Y(0.0f, 1.0f, 0.0f);
  90. static const vmath::vec3 Z(0.0f, 0.0f, 1.0f);
  91. vmath::mat4 model_matrix;
  92. // Setup
  93. glEnable(GL_CULL_FACE);
  94. glDisable(GL_DEPTH_TEST);
  95. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  96. // Activate simple shading program
  97. glUseProgram(render_prog);
  98. // Set up the model and projection matrix
  99. vmath::mat4 projection_matrix(vmath::frustum(-1.0f, 1.0f, -aspect, aspect, 1.0f, 500.0f));
  100. glUniformMatrix4fv(render_projection_matrix_loc, 1, GL_FALSE, projection_matrix);
  101. // Set up for a glDrawElements call
  102. glBindVertexArray(vao[0]);
  103. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ebo[0]);
  104. // Draw Arrays...
  105. model_matrix = vmath::translate(-3.0f, 0.0f, -5.0f);
  106. glUniformMatrix4fv(render_model_matrix_loc,1, GL_FALSE, model_matrix);
  107. glDrawArrays(GL_TRIANGLES, 0, 3);
  108. // DrawElements
  109. model_matrix = vmath::translate(-1.0f, 0.0f, -5.0f);
  110. glUniformMatrix4fv(render_model_matrix_loc, 1, GL_FALSE, model_matrix);
  111. glDrawElements(GL_TRIANGLES, 3, GL_UNSIGNED_SHORT, NULL);
  112. // DrawElementsBaseVertex
  113. model_matrix = vmath::translate(1.0f, 0.0f, -5.0f);
  114. glUniformMatrix4fv(render_model_matrix_loc, 1, GL_FALSE, model_matrix);
  115. glDrawElementsBaseVertex(GL_TRIANGLES, 3, GL_UNSIGNED_SHORT, NULL, 1);
  116. // DrawArraysInstanced
  117. model_matrix = vmath::translate(3.0f, 0.0f, -5.0f);
  118. glUniformMatrix4fv(render_model_matrix_loc, 1, GL_FALSE, model_matrix);
  119. glDrawArraysInstanced(GL_TRIANGLES, 0, 3, 1);
  120. base::Display();
  121. }
  122. void DrawCommandExample::Finalize(void)
  123. {
  124. glUseProgram(0);
  125. glDeleteProgram(render_prog);
  126. glDeleteVertexArrays(1, vao);
  127. glDeleteBuffers(1, vbo);
  128. }
  129. void DrawCommandExample::Reshape(int width, int height)
  130. {
  131. glViewport(0, 0 , width, height);
  132. aspect = float(height) / float(width);
  133. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172

(2)常见问题:

line 46: static const ShaderInfo shader_info[] = 改成 static ShaderInfo shader_info[] = 
line 116: mat4 model_matrix; 改成 vmath::mat4 model_matrix; 
line 136/141/146/151: translation 改成 translate 
line 137/142/147/152: 把参数4改成1 ,即 
glUniformMatrix4fv(render_model_matrix_loc, 4, GL_FALSE, model_matrix); 改成 glUniformMatrix4fv(render_model_matrix_loc, 1, GL_FALSE, model_matrix);

结果如下: 
这里写图片描述




以下是原文地址或参考地址:

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/108574
推荐阅读
相关标签
  

闽ICP备14008679号