mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
r500: cleanup warnings and include files
This commit is contained in:
parent
8c39e24ec3
commit
5552500cdf
4 changed files with 4 additions and 37 deletions
|
|
@ -74,6 +74,7 @@ typedef struct r300_context *r300ContextPtr;
|
|||
|
||||
#include "r300_vertprog.h"
|
||||
#include "r300_fragprog.h"
|
||||
#include "r500_fragprog.h"
|
||||
|
||||
/**
|
||||
* This function takes a float and packs it into a uint32_t
|
||||
|
|
|
|||
|
|
@ -60,7 +60,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
#include "r300_state.h"
|
||||
#include "r300_reg.h"
|
||||
#include "r300_emit.h"
|
||||
#include "r300_fragprog.h"
|
||||
#include "r300_tex.h"
|
||||
|
||||
#include "drirenderbuffer.h"
|
||||
|
|
@ -1369,7 +1368,6 @@ static void r300SetupFragmentShaderTextures(GLcontext *ctx, int *tmu_mappings)
|
|||
|
||||
static void r500SetupFragmentShaderTextures(GLcontext *ctx, int *tmu_mappings)
|
||||
{
|
||||
r300ContextPtr r300 = R300_CONTEXT(ctx);
|
||||
int i;
|
||||
struct r500_fragment_program *fp = (struct r500_fragment_program *)
|
||||
(char *)ctx->FragmentProgram._Current;
|
||||
|
|
@ -1898,9 +1896,6 @@ static inline void r300SetupVertexProgramFragment(r300ContextPtr r300, int dest,
|
|||
static void r300VapCntl(r300ContextPtr rmesa, GLuint input_count, GLuint output_count, GLuint temp_count)
|
||||
{
|
||||
int vtx_mem_size;
|
||||
int cmd_reserved = 0;
|
||||
int cmd_written = 0;
|
||||
drm_radeon_cmd_header_t *cmd = NULL;
|
||||
int pvs_num_slots;
|
||||
int pvs_num_cntrls;
|
||||
|
||||
|
|
|
|||
|
|
@ -1495,7 +1495,7 @@ static char *toswiz(int swiz_val) {
|
|||
|
||||
static char *toop(int op_val)
|
||||
{
|
||||
char *str;
|
||||
char *str = NULL;
|
||||
switch (op_val) {
|
||||
case 0: str = "MAD"; break;
|
||||
case 1: str = "DP3"; break;
|
||||
|
|
@ -1578,7 +1578,6 @@ static char *to_texop(int val)
|
|||
|
||||
static void dump_program(struct r500_fragment_program *fp)
|
||||
{
|
||||
int pc = 0;
|
||||
int n;
|
||||
uint32_t inst;
|
||||
uint32_t inst0;
|
||||
|
|
|
|||
|
|
@ -30,8 +30,8 @@
|
|||
* Ben Skeggs <darktama@iinet.net.au>
|
||||
* Jerome Glisse <j.glisse@gmail.com>
|
||||
*/
|
||||
#ifndef __R300_FRAGPROG_H_
|
||||
#define __R300_FRAGPROG_H_
|
||||
#ifndef __R500_FRAGPROG_H_
|
||||
#define __R500_FRAGPROG_H_
|
||||
|
||||
#include "glheader.h"
|
||||
#include "macros.h"
|
||||
|
|
@ -41,12 +41,6 @@
|
|||
|
||||
#include "r300_context.h"
|
||||
|
||||
typedef struct r300_fragment_program_swizzle {
|
||||
GLuint length;
|
||||
GLuint src[4];
|
||||
GLuint inst[8];
|
||||
} r300_fragment_program_swizzle_t;
|
||||
|
||||
/* supported hw opcodes */
|
||||
#define PFS_OP_MAD 0
|
||||
#define PFS_OP_DP3 1
|
||||
|
|
@ -74,25 +68,6 @@ typedef struct r300_fragment_program_swizzle {
|
|||
#define SRC_MASK (63 << 0)
|
||||
#define SRC_STRIDE 6
|
||||
|
||||
#define NOP_INST0 ( \
|
||||
(R300_FPI0_OUTC_MAD) | \
|
||||
(R300_FPI0_ARGC_ZERO << R300_FPI0_ARG0C_SHIFT) | \
|
||||
(R300_FPI0_ARGC_ZERO << R300_FPI0_ARG1C_SHIFT) | \
|
||||
(R300_FPI0_ARGC_ZERO << R300_FPI0_ARG2C_SHIFT))
|
||||
#define NOP_INST1 ( \
|
||||
((0 | SRC_CONST) << R300_FPI1_SRC0C_SHIFT) | \
|
||||
((0 | SRC_CONST) << R300_FPI1_SRC1C_SHIFT) | \
|
||||
((0 | SRC_CONST) << R300_FPI1_SRC2C_SHIFT))
|
||||
#define NOP_INST2 ( \
|
||||
(R300_FPI2_OUTA_MAD) | \
|
||||
(R300_FPI2_ARGA_ZERO << R300_FPI2_ARG0A_SHIFT) | \
|
||||
(R300_FPI2_ARGA_ZERO << R300_FPI2_ARG1A_SHIFT) | \
|
||||
(R300_FPI2_ARGA_ZERO << R300_FPI2_ARG2A_SHIFT))
|
||||
#define NOP_INST3 ( \
|
||||
((0 | SRC_CONST) << R300_FPI3_SRC0A_SHIFT) | \
|
||||
((0 | SRC_CONST) << R300_FPI3_SRC1A_SHIFT) | \
|
||||
((0 | SRC_CONST) << R300_FPI3_SRC2A_SHIFT))
|
||||
|
||||
#define DRI_CONF_FP_OPTIMIZATION_SPEED 0
|
||||
#define DRI_CONF_FP_OPTIMIZATION_QUALITY 1
|
||||
|
||||
|
|
@ -101,7 +76,4 @@ struct r500_fragment_program;
|
|||
extern void r500TranslateFragmentShader(r300ContextPtr r300,
|
||||
struct r500_fragment_program *fp);
|
||||
|
||||
extern void r300TranslateFragmentShader(r300ContextPtr r300,
|
||||
struct r300_fragment_program *fp);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue