struct nv40_vertex_program *);
extern void nv40_vertprog_bind(struct nv40_context *,
struct nv40_vertex_program *);
+extern void nv40_vertprog_destroy(struct nv40_context *,
+ struct nv40_vertex_program *);
/* nv40_fragprog.c */
extern void nv40_fragprog_translate(struct nv40_context *,
struct nv40_fragment_program *);
extern void nv40_fragprog_bind(struct nv40_context *,
struct nv40_fragment_program *);
+extern void nv40_fragprog_destroy(struct nv40_context *,
+ struct nv40_fragment_program *);
/* nv40_state.c and friends */
extern void nv40_emit_hw_state(struct nv40_context *nv40);
#define abs(s) nv40_sr_abs((s))
#define scale(s,v) nv40_sr_scale((s), NV40_FP_OP_DST_SCALE_##v)
-static uint32_t
-passthrough_fp_data[] = {
- 0x01403e81, 0x1c9dc801, 0x0001c800, 0x3fe1c800
-};
-
-static struct nv40_fragment_program
-passthrough_fp = {
- .pipe = NULL,
- .translated = TRUE,
- .insn = passthrough_fp_data,
- .insn_len = sizeof(passthrough_fp_data) / sizeof(uint32_t),
- .buffer = NULL,
- .uses_kil = 0,
- .num_regs = 2,
-};
-
struct nv40_fpc {
struct nv40_fragment_program *fp;
if (!fp->translated) {
nv40_fragprog_translate(nv40, fp);
- if (!fp->translated) {
- NOUVEAU_ERR("invalid, using passthrough shader\n");
- fp = &passthrough_fp;
- }
+ if (!fp->translated)
+ assert(0);
}
if (fp->num_consts) {
nv40->fragprog.active = fp;
}
+void
+nv40_fragprog_destroy(struct nv40_context *nv40,
+ struct nv40_fragment_program *fp)
+{
+ if (fp->insn_len)
+ free(fp->insn);
+}
+
static void
nv40_vp_state_delete(struct pipe_context *pipe, void *hwcso)
{
- free(hwcso);
+ struct nv40_context *nv40 = (struct nv40_context *)pipe;
+ struct nv40_vertex_program *vp = hwcso;
+
+ nv40_vertprog_destroy(nv40, vp);
+ free(vp);
}
static void *
static void
nv40_fp_state_delete(struct pipe_context *pipe, void *hwcso)
{
- free(hwcso);
+ struct nv40_context *nv40 = (struct nv40_context *)pipe;
+ struct nv40_fragment_program *fp = hwcso;
+
+ nv40_fragprog_destroy(nv40, fp);
+ free(fp);
}
static void
nv40->vertprog.active = vp;
}
+void
+nv40_vertprog_destroy(struct nv40_context *nv40, struct nv40_vertex_program *vp)
+{
+ if (vp->nr_consts)
+ free(vp->consts);
+ if (vp->nr_insns)
+ free(vp->insns);
+}
+