Module: Mesa
Branch: master
Commit: 00bb5247166f821767b0322f7626f5980b60497e
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=00bb5247166f821767b0322f7626f5980b60497e

Author: Samuel Pitoiset <[email protected]>
Date:   Sun Nov  1 23:28:02 2015 +0100

nv50: use correct heaps for FP and GP code segments

This is just a cosmetic change. Trivial.

Signed-off-by: Samuel Pitoiset <[email protected]>

---

 src/gallium/drivers/nouveau/nv50/nv50_program.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/nouveau/nv50/nv50_program.c 
b/src/gallium/drivers/nouveau/nv50/nv50_program.c
index 26ba2c2..299629b 100644
--- a/src/gallium/drivers/nouveau/nv50/nv50_program.c
+++ b/src/gallium/drivers/nouveau/nv50/nv50_program.c
@@ -420,8 +420,8 @@ nv50_program_upload_code(struct nv50_context *nv50, struct 
nv50_program *prog)
 
    switch (prog->type) {
    case PIPE_SHADER_VERTEX:   heap = nv50->screen->vp_code_heap; break;
-   case PIPE_SHADER_GEOMETRY: heap = nv50->screen->fp_code_heap; break;
-   case PIPE_SHADER_FRAGMENT: heap = nv50->screen->gp_code_heap; break;
+   case PIPE_SHADER_GEOMETRY: heap = nv50->screen->gp_code_heap; break;
+   case PIPE_SHADER_FRAGMENT: heap = nv50->screen->fp_code_heap; break;
    default:
       assert(!"invalid program type");
       return false;

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to