work save
This commit is contained in:
parent
410cb50b18
commit
4522403744
1
NEWS.md
1
NEWS.md
|
@ -7,6 +7,7 @@ Red Panda C++ Version 2.14
|
||||||
- enhancement: Check and remove all non-exist breakpoints before debug a project
|
- enhancement: Check and remove all non-exist breakpoints before debug a project
|
||||||
- change: Remove nasm support
|
- change: Remove nasm support
|
||||||
- change: Don't stop debug when breakpoint can't be set
|
- change: Don't stop debug when breakpoint can't be set
|
||||||
|
- fix: "Generate assembly" menu item is wrongly enabled for new GNU assembly files
|
||||||
|
|
||||||
Red Panda C++ Version 2.13
|
Red Panda C++ Version 2.13
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#version 330 core
|
#version 330 core
|
||||||
layout (location = 0) in vec3 position;//in 代表输入向量, location,与下面的顶点属性描述有关。
|
layout (location = 0) in vec3 position;
|
||||||
layout (location = 1) in vec3 color;
|
layout (location = 1) in vec3 color;
|
||||||
|
|
||||||
out vec3 ourColor;//out 代表输出3维向量,作为片段着色器的输入,见下文
|
out vec3 ourColor;
|
||||||
|
|
||||||
void main()
|
void main()
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,9 +21,11 @@ Cpp[zh_CN]=GLFW_shader_zh_CN.h
|
||||||
CppName=shader.frag
|
CppName=shader.frag
|
||||||
Cpp=GLFW_shader.frag.txt
|
Cpp=GLFW_shader.frag.txt
|
||||||
|
|
||||||
|
|
||||||
[Unit3]
|
[Unit3]
|
||||||
CppName=shader.vs
|
CppName=shader.vs
|
||||||
Cpp=GLFW_shader.vs.txt
|
Cpp=GLFW_shader.vs.txt
|
||||||
|
Cpp[zh_CN]=GLFW_shader_zh_CN.vs
|
||||||
|
|
||||||
[Project]
|
[Project]
|
||||||
UnitCount=4
|
UnitCount=4
|
||||||
|
|
Loading…
Reference in New Issue