mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 05:48:07 +02:00
linker: Document what remains to be done
This commit is contained in:
parent
ed0626ebc7
commit
13e10e43c3
1 changed files with 14 additions and 0 deletions
14
linker.cpp
14
linker.cpp
|
|
@ -392,6 +392,20 @@ link_shaders(struct glsl_program *prog)
|
|||
prog->LinkStatus = true;
|
||||
}
|
||||
|
||||
/* FINISHME: Perform whole-program optimization here. */
|
||||
|
||||
/* FINISHME: Assign uniform locations. */
|
||||
|
||||
/* FINISHME: Assign vertex shader input locations. */
|
||||
|
||||
/* FINISHME: Assign vertex shader output / fragment shader input
|
||||
* FINISHME: locations.
|
||||
*/
|
||||
|
||||
/* FINISHME: Assign fragment shader output locations. */
|
||||
|
||||
/* FINISHME: Generate code here. */
|
||||
|
||||
done:
|
||||
free(vert_shader_list);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue