Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
fragment_ray_tracing.h
1
2struct Ray {
3 vec3 O; // Origin
4 vec3 V; // Direction vector
5};
6
7// Notes: GLUP.viewport = [x0,y0,width,height]
8// clip-space coordinates are in [-1,1] (not [0,1]) !
9
10// Computes the ray that passes through the current fragment
11// The ray is in world space.
12Ray glup_primary_ray() {
13 vec4 near = vec4(
14 2.0 * ( (gl_FragCoord.x - GLUP.viewport[0]) / GLUP.viewport[2] - 0.5),
15 2.0 * ( (gl_FragCoord.y - GLUP.viewport[1]) / GLUP.viewport[3] - 0.5),
16 0.0,
17 1.0
18 );
19 near = GLUP.inverse_modelviewprojection_matrix * near ;
20 vec4 far = near + GLUP.inverse_modelviewprojection_matrix[2] ;
21 near.xyz /= near.w ;
22 far.xyz /= far.w ;
23 return Ray(near.xyz, far.xyz-near.xyz) ;
24}
25
26// Updates fragment depth from a point in world space
27void glup_update_depth(in vec3 M_world_space) {
28 vec4 M_clip_space = GLUP.modelviewprojection_matrix * vec4(M_world_space,1.0);
29 float z = 0.5*(1.0 + M_clip_space.z/M_clip_space.w);
30 glup_FragDepth = (1.0-z)*gl_DepthRange.near + z*gl_DepthRange.far;
31}
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71