diff options
| author | Marek Olšák <marek.olsak@amd.com> | 2017-04-02 14:30:16 +0200 |
|---|---|---|
| committer | Marek Olšák <marek.olsak@amd.com> | 2017-05-10 19:00:16 +0200 |
| commit | c24c3b94ed29ecd99b1101c74c6c4606f9b5580e (patch) | |
| tree | 81f6966bc59a68d9867693c65d35fae9bb1d9819 /src/gallium/auxiliary/draw/draw_llvm.h | |
| parent | fe437882ea2d60e91c244cc95beb4b79c615af49 (diff) | |
gallium: decrease the size of pipe_vertex_buffer - 24 -> 16 bytes
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_llvm.h')
| -rw-r--r-- | src/gallium/auxiliary/draw/draw_llvm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_llvm.h b/src/gallium/auxiliary/draw/draw_llvm.h index 57c9e72c04c..a968be01f81 100644 --- a/src/gallium/auxiliary/draw/draw_llvm.h +++ b/src/gallium/auxiliary/draw/draw_llvm.h @@ -172,7 +172,7 @@ enum { lp_build_struct_get(_gallivm, _ptr, 0, "stride") #define draw_jit_vbuffer_offset(_gallivm, _ptr) \ - lp_build_struct_get(_gallivm, _ptr, 1, "buffer_offset") + lp_build_struct_get(_gallivm, _ptr, 2, "buffer_offset") enum { DRAW_JIT_DVBUFFER_MAP = 0, |