mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
draw: Fix draw_variant_output::format's type.
(cherry picked from commit b79b05e17e)
This commit is contained in:
parent
068926aaea
commit
4a14f76c69
2 changed files with 4 additions and 3 deletions
|
|
@ -33,6 +33,7 @@
|
|||
|
||||
#include "draw_context.h"
|
||||
#include "draw_private.h"
|
||||
#include "draw_vertex.h"
|
||||
|
||||
|
||||
struct draw_context;
|
||||
|
|
@ -48,7 +49,7 @@ struct draw_varient_input
|
|||
|
||||
struct draw_varient_output
|
||||
{
|
||||
enum pipe_format format; /* output format */
|
||||
enum attrib_emit format; /* output format */
|
||||
unsigned vs_output:8; /* which vertex shader output is this? */
|
||||
unsigned offset:24; /* offset into output vertex */
|
||||
};
|
||||
|
|
|
|||
|
|
@ -384,7 +384,7 @@ static void emit_store_R8G8B8A8_UNORM( struct aos_compilation *cp,
|
|||
static boolean emit_output( struct aos_compilation *cp,
|
||||
struct x86_reg ptr,
|
||||
struct x86_reg dataXMM,
|
||||
unsigned format )
|
||||
enum attrib_emit format )
|
||||
{
|
||||
switch (format) {
|
||||
case EMIT_1F:
|
||||
|
|
@ -422,7 +422,7 @@ boolean aos_emit_outputs( struct aos_compilation *cp )
|
|||
unsigned i;
|
||||
|
||||
for (i = 0; i < cp->vaos->base.key.nr_outputs; i++) {
|
||||
unsigned format = cp->vaos->base.key.element[i].out.format;
|
||||
enum attrib_emit format = cp->vaos->base.key.element[i].out.format;
|
||||
unsigned offset = cp->vaos->base.key.element[i].out.offset;
|
||||
unsigned vs_output = cp->vaos->base.key.element[i].out.vs_output;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue