search for: textureview

Displaying 9 results from an estimated 9 matches for "textureview".

2016 Mar 16
2
[PATCH mesa 6/6] nouveau: codegen: Disable more old resource handling code
...gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp > index c167c4a..115d0bb 100644 > --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp > +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp > @@ -856,12 +856,14 @@ public: > }; > std::vector<TextureView> textureViews; > > + /* > struct Resource { > uint8_t target; // TGSI_TEXTURE_* > bool raw; > uint8_t slot; // $surface index > }; > std::vector<Resource> resources; > + */ > > struct MemoryFile { >...
2016 Mar 17
4
[PATCH mesa v2 1/3] nouveau: codegen: Disable more old resource handling code
...gen/nv50_ir_from_tgsi.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp index 1e91ad3..41eb4e3 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp @@ -856,12 +856,14 @@ public: }; std::vector<TextureView> textureViews; + /* struct Resource { uint8_t target; // TGSI_TEXTURE_* bool raw; uint8_t slot; // $surface index }; std::vector<Resource> resources; + */ struct MemoryFile { uint8_t mem_type; // TGSI_MEMORY_TYPE_* @@ -1419,8 +1421,8 @@ p...
2016 Mar 16
0
[PATCH mesa 6/6] nouveau: codegen: Disable more old resource handling code
...gen/nv50_ir_from_tgsi.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp index c167c4a..115d0bb 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp @@ -856,12 +856,14 @@ public: }; std::vector<TextureView> textureViews; + /* struct Resource { uint8_t target; // TGSI_TEXTURE_* bool raw; uint8_t slot; // $surface index }; std::vector<Resource> resources; + */ struct MemoryFile { uint8_t mem_type; // TGSI_MEMORY_TYPE_* @@ -1423,8 +1425,8 @@ p...
2016 Mar 16
0
[PATCH mesa 6/6] nouveau: codegen: Disable more old resource handling code
...codegen/nv50_ir_from_tgsi.cpp >> index c167c4a..115d0bb 100644 >> --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp >> +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp >> @@ -856,12 +856,14 @@ public: >> }; >> std::vector<TextureView> textureViews; >> >> + /* >> struct Resource { >> uint8_t target; // TGSI_TEXTURE_* >> bool raw; >> uint8_t slot; // $surface index >> }; >> std::vector<Resource> resources; >> + */ >> &g...
2016 Jan 14
0
[PATCH] nv50/ir: only use FILE_LOCAL_MEMORY for temp arrays that use indirection
...int clipVertexOutput; @@ -859,8 +874,6 @@ Source::Source(struct nv50_ir_prog_info *prog) : info(prog) if (prog->dbgFlags & NV50_IR_DEBUG_BASIC) tgsi_dump(tokens, 0); - - mainTempsInLMem = false; } Source::~Source() @@ -890,6 +903,7 @@ bool Source::scanSource() textureViews.resize(scan.file_max[TGSI_FILE_SAMPLER_VIEW] + 1); resources.resize(scan.file_max[TGSI_FILE_IMAGE] + 1); + tempArrayId.resize(scan.file_max[TGSI_FILE_TEMPORARY] + 1); info->immd.bufSize = 0; @@ -935,7 +949,8 @@ bool Source::scanSource() } tgsi_parse_free(&parse); -...
2013 Sep 20
0
Best way to specify a mixed ANCOVA in R?
...pdf] if you want an example). Using ezANOVA, I can include covariates but the output does not show the F-statistic and p-values for interactions with the covariate - the main effect of the covariate is also not tested using this method. My ezANOVA model is as follows: aov.model<-ezANOVA( data=textureView.child.outliersRemoved , dv=.(x) , wid=.(ID) , within=.(Texture,View) , between=.(TNOGroup) , between_covariates=.(Age) , type=3 , return_aov=TRUE ) Another option is to use lm or Anova, but I don't know how to specify the error terms properly for either and I'm limited because I want t...
2017 Jun 09
0
Wine release 2.10
...ive the desktop size before proceeding with startup. wineandroid: Add Java callbacks for creating and destroying a window. wineandroid: Notify Java also when a window is forcefully destroyed. wineandroid: Add a Java callback for setting window position. wineandroid: Create a TextureView for every top-level window. wineandroid: Add a header for some of the Android native APIs and data structures. wineandroid: Add a JNI callback to store the native window we got from the TextureView. explorer: Don't forward the system tray to the display driver in desktop mode....
2017 Jun 23
0
Wine release 2.11
...wineandroid: Add a stub implementation of ChangeDisplaySettingsEx. wineandroid: Add a stub implementation of EnumDisplaySettingsEx. wineandroid: Support creating a separate native window for OpenGL rendering in the client area. wineandroid: Add infrastructure to support a separate TextureView for the window client area. wineandroid: Create window groups inside every window to support a client area. wineandroid: Also create HWND_MESSAGE windows on the Java side. configure: Add check for OpenGL ES libraries. wineandroid: Initial version of the OpenGL driver....
2016 Mar 16
13
[PATCH mesa 1/6] tgsi_build: Fix return of uninitialized memory in tgsi_*_instruction_memory
tgsi_default_instruction_memory / tgsi_build_instruction_memory were returning uninitialized memory for tgsi_instruction_memory.Texture and tgsi_instruction_memory.Format. Note 0 means not set, and thus is a correct default initializer for these. Fixes: 3243b6fc97 ("tgsi: add Texture and Format to tgsi_instruction_memory") Cc: Nicolai Hähnle <nicolai.haehnle at amd.com>