gallium/util: trivial whitespace/formatting fixes in u_blit.c
Reviewed-by: Mathias Fröhlich <mathias.froehlich@web.de> Reviewed-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
@@ -180,12 +180,12 @@ set_fragment_shader(struct blit_state *ctx,
|
||||
assert(stype == TGSI_RETURN_TYPE_FLOAT);
|
||||
idx = 3;
|
||||
if (!ctx->fs[pipe_tex][idx]) {
|
||||
enum tgsi_texture_type tgsi_tex = util_pipe_tex_to_tgsi_tex(pipe_tex, 0);
|
||||
enum tgsi_texture_type tgsi_tex =
|
||||
util_pipe_tex_to_tgsi_tex(pipe_tex, 0);
|
||||
ctx->fs[pipe_tex][idx] =
|
||||
util_make_fragment_tex_shader_xrbias(ctx->pipe, tgsi_tex);
|
||||
}
|
||||
}
|
||||
|
||||
else if (!ctx->fs[pipe_tex][idx]) {
|
||||
enum tgsi_texture_type tgsi_tex = util_pipe_tex_to_tgsi_tex(pipe_tex, 0);
|
||||
|
||||
@@ -298,7 +298,8 @@ setup_vertex_data_tex(struct blit_state *ctx,
|
||||
if (src_target == PIPE_TEXTURE_CUBE ||
|
||||
src_target == PIPE_TEXTURE_CUBE_ARRAY) {
|
||||
/* Map cubemap texture coordinates inplace. */
|
||||
const unsigned stride = sizeof ctx->vertices[0] / sizeof ctx->vertices[0][0][0];
|
||||
const unsigned stride =
|
||||
sizeof ctx->vertices[0] / sizeof ctx->vertices[0][0][0];
|
||||
util_map_texcoords2d_onto_cubemap(src_face,
|
||||
&ctx->vertices[0][1][0], stride,
|
||||
&ctx->vertices[0][1][0], stride,
|
||||
@@ -536,8 +537,7 @@ util_blit_pixels_tex(struct blit_state *ctx,
|
||||
t0 = (float) srcY0;
|
||||
t1 = (float) srcY1;
|
||||
|
||||
if(normalized)
|
||||
{
|
||||
if (normalized) {
|
||||
/* normalize according to the mipmap level's size */
|
||||
int level = src_sampler_view->u.tex.first_level;
|
||||
float w = (float) u_minify(tex->width0, level);
|
||||
|
Reference in New Issue
Block a user