소스 검색

Update deferred_shading.vs for GLES3

pull/4705/head
MikiZX1 2 달 전
committed by GitHub
부모
커밋
135630f645
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
1개의 변경된 파일8개의 추가작업 그리고 11개의 파일을 삭제
  1. +8
    -11
      examples/shaders/resources/shaders/glsl100/deferred_shading.vs

+ 8
- 11
examples/shaders/resources/shaders/glsl100/deferred_shading.vs 파일 보기

@ -1,16 +1,13 @@
#version 100
#version 300 es
// Input vertex attributes
attribute vec3 vertexPosition;
attribute vec2 vertexTexCoord;
precision highp float;
// Output vertex attributes (to fragment shader)
varying vec2 fragTexCoord;
layout (location = 0) in vec3 vertexPosition;
layout (location = 1) in vec2 vertexTexCoord;
void main()
{
fragTexCoord = vertexTexCoord;
out vec2 texCoord;
// Calculate final vertex position
gl_Position = vec4(vertexPosition, 1.0);
void main() {
gl_Position = vec4(vertexPosition, 1.0);
texCoord = vertexTexCoord;
}

불러오는 중...
취소
저장