~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/gallium/drivers/r300/r300_tgsi_to_rc.c

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include "r300_tgsi_to_rc.h"
24
24
 
25
 
#include "radeon_compiler.h"
26
 
#include "radeon_program.h"
 
25
#include "compiler/radeon_compiler.h"
27
26
 
28
27
#include "tgsi/tgsi_info.h"
29
28
#include "tgsi/tgsi_parse.h"
58
57
        case TGSI_OPCODE_FRC: return RC_OPCODE_FRC;
59
58
        case TGSI_OPCODE_CLAMP: return RC_OPCODE_CLAMP;
60
59
        case TGSI_OPCODE_FLR: return RC_OPCODE_FLR;
61
 
     /* case TGSI_OPCODE_ROUND: return RC_OPCODE_ROUND; */
 
60
        case TGSI_OPCODE_ROUND: return RC_OPCODE_ROUND;
62
61
        case TGSI_OPCODE_EX2: return RC_OPCODE_EX2;
63
62
        case TGSI_OPCODE_LG2: return RC_OPCODE_LG2;
64
63
        case TGSI_OPCODE_POW: return RC_OPCODE_POW;