mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
st/mesa: use 1.0f as boolean true on drivers without integer support
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=82882
Cc: 10.2 10.3 mesa-stable@lists.freedesktop.org
Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
(cherry picked from commit 1a00f24751)
This commit is contained in:
parent
e842a02df3
commit
06f1f1ea81
1 changed files with 3 additions and 2 deletions
|
|
@ -34,6 +34,7 @@
|
|||
#include "pipe/p_context.h"
|
||||
#include "pipe/p_defines.h"
|
||||
#include "pipe/p_screen.h"
|
||||
#include "util/u_math.h"
|
||||
|
||||
#include "st_context.h"
|
||||
#include "st_extensions.h"
|
||||
|
|
@ -274,8 +275,6 @@ void st_init_limits(struct pipe_screen *screen,
|
|||
c->MinProgramTextureGatherOffset = screen->get_param(screen, PIPE_CAP_MIN_TEXTURE_GATHER_OFFSET);
|
||||
c->MaxProgramTextureGatherOffset = screen->get_param(screen, PIPE_CAP_MAX_TEXTURE_GATHER_OFFSET);
|
||||
|
||||
c->UniformBooleanTrue = ~0;
|
||||
|
||||
c->MaxTransformFeedbackBuffers =
|
||||
screen->get_param(screen, PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS);
|
||||
c->MaxTransformFeedbackBuffers = MIN2(c->MaxTransformFeedbackBuffers, MAX_FEEDBACK_BUFFERS);
|
||||
|
|
@ -697,6 +696,8 @@ void st_init_extensions(struct pipe_screen *screen,
|
|||
}
|
||||
}
|
||||
|
||||
consts->UniformBooleanTrue = consts->NativeIntegers ? ~0 : fui(1.0f);
|
||||
|
||||
/* Below are the cases which cannot be moved into tables easily. */
|
||||
|
||||
if (!has_lib_dxtc && !options->force_s3tc_enable) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue